Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
297
Merge Requests
41
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
e26c9a0e
Commit
e26c9a0e
authored
30 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(fix): Filter withdrawals by username on admin endpoint
parent
3e857fd2
goal/withdrawals-approval
1 merge request
!393
WIP: (feat): Withdrawal status support
Pipeline
#95459645
failed with stages
in 2 minutes and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Controllers/api/v2/admin/rewards/withdrawals.php
View file @
e26c9a0e
...
...
@@ -25,8 +25,8 @@ class withdrawals implements Interfaces\Api, Interfaces\ApiAdminPam
$userGuid
=
null
;
if
(
$_GET
[
'user
name
'
])
{
$userGuid
=
(
new
User
(
strtolower
(
$_GET
[
'user
name
'
])))
->
guid
;
if
(
$_GET
[
'user'
])
{
$userGuid
=
(
new
User
(
strtolower
(
$_GET
[
'user'
])))
->
guid
;
}
$status
=
$_GET
[
'status'
]
??
null
;
...
...
This diff is collapsed.
Please
register
or
sign in
to comment