Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sweepstake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arjun Jhukal
sweepstake
Commits
0f842d23
Commit
0f842d23
authored
Dec 17, 2025
by
Arjun Jhukal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the pagination
parent
4afdf020
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
64 additions
and
71 deletions
+64
-71
Activities.tsx
...pages/dashboard/adminDashboard/activityLog/Activities.tsx
+13
-13
index.tsx
...components/pages/dashboard/adminDashboard/pages/index.tsx
+5
-5
index.tsx
...mponents/pages/dashboard/adminDashboard/players/index.tsx
+7
-14
TransactionTable.tsx
...dashboard/adminDashboard/transaction/TransactionTable.tsx
+6
-6
index.tsx
...ts/pages/dashboard/userDashboard/depositHistory/index.tsx
+6
-6
index.tsx
.../pages/dashboard/userDashboard/withdrawlHistory/index.tsx
+5
-5
notificationApi.tsx
src/services/notificationApi.tsx
+8
-8
playerApi.ts
src/services/playerApi.ts
+3
-3
transaction.ts
src/services/transaction.ts
+9
-9
config.ts
src/types/config.ts
+2
-2
No files found.
src/components/pages/dashboard/adminDashboard/activityLog/Activities.tsx
View file @
0f842d23
"use client"
;
import
TableHeader
from
'@/components/molecules/TableHeader'
;
import
CustomTable
from
'@/components/organism/Table'
;
import
{
User
,
Lock
,
ArrowUp
,
ArrowDown
}
from
'@wandersonalwes/iconsax-react'
;
import
React
,
{
useMemo
}
from
'react'
;
import
{
useReactTable
,
getCoreRowModel
,
getPaginationRowModel
,
getSortedRowModel
,
ColumnDef
}
from
'@tanstack/react-table'
;
import
{
Pagination
,
Box
}
from
'@mui/material'
;
import
{
TransactionStatusProps
}
from
'../transaction/TransactionTable'
;
import
{
StatusOptions
}
from
'@/types/config'
;
import
{
useGetAllActivityQuery
}
from
'@/services/notificationApi'
;
import
{
StatusOptions
}
from
'@/types/config'
;
import
{
ActivityProps
}
from
'@/types/notification'
;
import
{
Box
,
Pagination
}
from
'@mui/material'
;
import
{
ColumnDef
,
getCoreRowModel
,
getPaginationRowModel
,
getSortedRowModel
,
useReactTable
}
from
'@tanstack/react-table'
;
import
{
ArrowDown
,
ArrowUp
}
from
'@wandersonalwes/iconsax-react'
;
import
React
,
{
useMemo
}
from
'react'
;
import
{
TransactionStatusProps
}
from
'../transaction/TransactionTable'
;
...
...
@@ -28,7 +28,7 @@ export default function Activities() {
const
[
search
,
setSearch
]
=
React
.
useState
(
""
);
const
[
page
,
setPage
]
=
React
.
useState
(
1
);
const
[
page
Index
,
setPageIndex
]
=
React
.
useState
(
1
);
const
[
status
,
setStatus
]
=
React
.
useState
<
TransactionStatusProps
|
undefined
>
();
const
[
pageSize
,
setPageSize
]
=
React
.
useState
(
10
);
const
[
activityType
,
setActivityType
]
=
React
.
useState
(
""
);
...
...
@@ -36,13 +36,13 @@ export default function Activities() {
// const [download, { isLoading: downloading }] = useStartDownloadMutation();
const
queryArgs
=
useMemo
(
()
=>
({
page
,
p
er_pag
e
:
pageSize
,
page
Index
:
pageIndex
,
p
ageSiz
e
:
pageSize
,
search
:
search
||
""
,
activity_type
:
activityType
,
status
}),
[
page
,
pageSize
,
search
,
status
,
activityType
]
[
page
Index
,
pageSize
,
search
,
status
,
activityType
]
);
...
...
@@ -169,7 +169,7 @@ export default function Activities() {
/>
<
CustomTable
key=
{
`${page}-${pageSize}-${search}-${activityType}`
}
key=
{
`${page
Index
}-${pageSize}-${search}-${activityType}`
}
table=
{
table
}
loading=
{
isLoading
}
/>
...
...
@@ -190,8 +190,8 @@ export default function Activities() {
</
select
>
</
div
>
<
Pagination
count=
{
data
?.
data
?.
pagination
?.
total_pages
||
1
}
page=
{
page
}
onChange=
{
(
_
,
value
)
=>
setPage
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
page=
{
page
Index
}
onChange=
{
(
_
,
value
)
=>
setPage
Index
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
</
div
>
</
div
>
);
...
...
src/components/pages/dashboard/adminDashboard/pages/index.tsx
View file @
0f842d23
...
...
@@ -16,11 +16,11 @@ export default function GeneralPageLiting() {
const
dispatch
=
useAppDispatch
();
const
[
search
,
setSearch
]
=
useState
(
""
);
const
[
sorting
,
setSorting
]
=
useState
<
{
id
:
string
;
desc
:
boolean
}[]
>
([]);
const
[
page
,
setPage
]
=
useState
(
1
);
const
[
page
Index
,
setPageIndex
]
=
useState
(
1
);
const
[
pageSize
,
setPageSize
]
=
useState
(
10
);
const
{
data
,
isLoading
:
loadingPages
}
=
useGetAllPageQuery
({
page
,
p
er_pag
e
:
pageSize
,
page
Index
:
pageIndex
,
p
ageSiz
e
:
pageSize
,
search
:
search
||
""
});
const
[
deletePage
,
{
isLoading
:
deleting
}]
=
useDeletePageByIdMutation
();
...
...
@@ -138,8 +138,8 @@ export default function GeneralPageLiting() {
</
select
>
</
div
>
<
Pagination
count=
{
data
?.
data
?.
pagination
?.
total_pages
||
1
}
page=
{
page
}
onChange=
{
(
_
,
value
)
=>
setPage
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
page=
{
page
Index
}
onChange=
{
(
_
,
value
)
=>
setPage
Index
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
</
div
>
</
div
>
</
section
>
...
...
src/components/pages/dashboard/adminDashboard/players/index.tsx
View file @
0f842d23
...
...
@@ -23,12 +23,12 @@ export default function PlayerListing() {
const
dispatch
=
useAppDispatch
();
const
[
search
,
setSearch
]
=
useState
(
""
);
const
[
sorting
,
setSorting
]
=
useState
<
{
id
:
string
;
desc
:
boolean
}[]
>
([]);
const
[
page
,
setPage
]
=
useState
(
1
);
const
[
page
Index
,
setPageIndex
]
=
useState
(
1
);
const
[
pageSize
,
setPageSize
]
=
useState
(
10
);
const
[
currentTab
,
setCurrentTab
]
=
React
.
useState
(
""
);
const
{
data
,
isLoading
:
loadingPlayer
}
=
useGetAllPlayerQuery
({
page
,
p
er_pag
e
:
pageSize
,
page
Index
:
pageIndex
,
p
ageSiz
e
:
pageSize
,
search
:
search
||
""
,
status
:
currentTab
||
""
});
...
...
@@ -199,17 +199,10 @@ export default function PlayerListing() {
columns
,
state
:
{
sorting
,
pagination
:
{
pageIndex
:
page
-
1
,
pageSize
:
pageSize
,
},
},
onSortingChange
:
setSorting
,
onPaginationChange
:
(
updater
)
=>
{
const
newState
=
typeof
updater
===
"function"
?
updater
({
pageIndex
:
page
-
1
,
pageSize
})
:
updater
;
setPage
(
newState
.
pageIndex
+
1
);
setPageSize
(
newState
.
pageSize
);
},
getCoreRowModel
:
getCoreRowModel
(),
getSortedRowModel
:
getSortedRowModel
(),
getPaginationRowModel
:
getPaginationRowModel
(),
...
...
@@ -287,8 +280,8 @@ export default function PlayerListing() {
</
select
>
</
div
>
<
Pagination
count=
{
data
?.
data
?.
pagination
?.
total_pages
||
1
}
page=
{
page
}
onChange=
{
(
_
,
value
)
=>
setPage
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
page=
{
page
Index
}
onChange=
{
(
_
,
value
)
=>
setPage
Index
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
</
div
>
</
div
>
</
section
>
...
...
src/components/pages/dashboard/adminDashboard/transaction/TransactionTable.tsx
View file @
0f842d23
...
...
@@ -30,7 +30,7 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
const
dispatch
=
useAppDispatch
();
const
[
sorting
,
setSorting
]
=
useState
<
{
id
:
string
;
desc
:
boolean
}[]
>
([]);
const
[
page
,
setPage
]
=
useState
(
1
);
const
[
page
Index
,
setPageIndex
]
=
useState
(
1
);
const
[
pageSize
,
setPageSize
]
=
useState
(
10
);
const
[
rowSelection
,
setRowSelection
]
=
useState
({});
const
[
status
,
setStatus
]
=
React
.
useState
<
TransactionStatusProps
|
undefined
>
();
...
...
@@ -43,7 +43,7 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
const
queryArgs
=
useMemo
(
()
=>
({
page
,
page
Index
,
per_page
:
pageSize
,
search
:
search
||
""
,
game_id
,
...
...
@@ -54,7 +54,7 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
start_date
:
customRange
.
startDate
,
end_date
:
customRange
.
endDate
}),
[
page
,
pageSize
,
search
,
game_id
,
user_id
,
status
,
selectedGame
,
selectedTransactionType
,
customRange
]
[
page
Index
,
pageSize
,
search
,
game_id
,
user_id
,
status
,
selectedGame
,
selectedTransactionType
,
customRange
]
);
const
{
data
,
isLoading
:
loadingTransaction
}
=
useGetAllTransactionQuery
(
queryArgs
);
...
...
@@ -223,7 +223,7 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
<>
<
CustomTable
key=
{
`${page}-${pageSize}-${search}-${game_id}-${user_id}`
}
key=
{
`${page
Index
}-${pageSize}-${search}-${game_id}-${user_id}`
}
table=
{
table
}
loading=
{
loadingTransaction
}
/>
<
div
className=
"flex flex-col md:flex-row justify-between items-start md:items-center mt-4 px-8 py-6 gap-4"
>
...
...
@@ -242,8 +242,8 @@ export default function TransactionTable({ user_id, game_id, search, setSearch }
</
select
>
</
div
>
<
Pagination
count=
{
data
?.
data
?.
pagination
?.
total_pages
||
1
}
page=
{
page
}
onChange=
{
(
_
,
value
)
=>
setPage
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
page=
{
page
Index
}
onChange=
{
(
_
,
value
)
=>
setPage
Index
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
</
div
>
</>
</
div
>
...
...
src/components/pages/dashboard/userDashboard/depositHistory/index.tsx
View file @
0f842d23
...
...
@@ -5,7 +5,7 @@ import { useGetAllDepositQuery } from '@/services/transaction';
import
{
SingleDepositProps
}
from
'@/types/transaction'
;
import
{
Pagination
}
from
'@mui/material'
;
import
{
ColumnDef
,
getCoreRowModel
,
getPaginationRowModel
,
useReactTable
}
from
'@tanstack/react-table'
;
import
React
,
{
useState
}
from
'react'
import
{
useState
}
from
'react'
;
export
default
function
DepositHistoryPage
(
{
currentFilter
,
...
...
@@ -15,13 +15,13 @@ export default function DepositHistoryPage(
currentFilter
:
number
|
null
;
customRange
:
{
startDate
:
string
|
null
,
endDate
:
string
|
null
}
})
{
const
[
page
,
setPage
]
=
useState
(
1
);
const
[
page
Index
,
setPageIndex
]
=
useState
(
1
);
const
[
pageSize
,
setPageSize
]
=
useState
(
10
);
const
{
data
,
isLoading
}
=
useGetAllDepositQuery
({
days
:
currentFilter
,
customRange
,
page
,
p
er_page
:
p
ageSize
page
Index
,
pageSize
});
const
columns
:
ColumnDef
<
SingleDepositProps
>
[]
=
[
{
...
...
@@ -77,8 +77,8 @@ export default function DepositHistoryPage(
<
div
className=
"flex flex-col md:flex-row justify-between items-start md:items-center mt-4 px-8 py-6 gap-4"
>
<
Pagination
count=
{
data
?.
data
?.
pagination
?.
total_pages
||
1
}
page=
{
page
}
onChange=
{
(
_
,
value
)
=>
setPage
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
page=
{
page
Index
}
onChange=
{
(
_
,
value
)
=>
setPage
Index
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
<
div
>
<
span
>
Row per page:
</
span
>
<
select
...
...
src/components/pages/dashboard/userDashboard/withdrawlHistory/index.tsx
View file @
0f842d23
...
...
@@ -13,11 +13,11 @@ export default function WithdrawnHistoryPage({ currentFilter,
currentFilter
:
number
|
null
;
customRange
:
{
startDate
:
string
|
null
,
endDate
:
string
|
null
}
})
{
const
[
page
,
setPage
]
=
useState
(
1
);
const
[
page
Index
,
setPageIndex
]
=
useState
(
1
);
const
[
pageSize
,
setPageSize
]
=
useState
(
10
);
const
{
data
,
isLoading
}
=
useGetAllWithdrawlQuery
({
page
,
p
er_page
:
p
ageSize
,
page
Index
,
pageSize
,
days
:
currentFilter
,
customRange
});
...
...
@@ -73,8 +73,8 @@ export default function WithdrawnHistoryPage({ currentFilter,
<
CustomTable
table=
{
table
}
loading=
{
isLoading
}
emptyMessage=
"You haven't deposite yet!"
/>
{
data
&&
data
?.
data
?.
data
.
length
>
5
?
<
div
className=
"flex flex-col md:flex-row justify-between items-start md:items-center mt-4 px-8 py-6 gap-4"
>
<
Pagination
count=
{
data
?.
data
?.
pagination
?.
total_pages
||
1
}
page=
{
page
}
onChange=
{
(
_
,
value
)
=>
setPage
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
page=
{
page
Index
}
onChange=
{
(
_
,
value
)
=>
setPage
Index
(
value
)
}
variant=
"outlined"
shape=
"rounded"
sx=
{
{
gap
:
"8px"
}
}
/>
<
div
>
<
span
>
Row per page:
</
span
>
<
select
...
...
src/services/notificationApi.tsx
View file @
0f842d23
import
{
GlobalResponse
,
QueryParams
}
from
"@/types/config"
;
import
{
ActivityResponse
,
NotificationResponse
}
from
"@/types/notification"
;
import
{
createApi
}
from
"@reduxjs/toolkit/query/react"
;
import
{
baseQuery
}
from
"./baseQuery"
;
import
{
ActivityResponse
,
NotificationResponse
}
from
"@/types/notification"
;
import
{
GlobalResponse
,
QueryParams
}
from
"@/types/config"
;
export
const
notificationApi
=
createApi
({
reducerPath
:
"notificationApi"
,
...
...
@@ -9,11 +9,11 @@ export const notificationApi = createApi({
tagTypes
:
[
'Notification'
,
"Activity"
],
endpoints
:
(
builder
)
=>
({
getAllNotification
:
builder
.
query
<
NotificationResponse
,
QueryParams
>
({
query
:
({
search
,
page
,
per_pag
e
})
=>
{
query
:
({
search
,
page
Index
,
pageSiz
e
})
=>
{
const
params
=
new
URLSearchParams
();
if
(
search
)
params
.
append
(
'search'
,
search
);
if
(
page
)
params
.
append
(
'page'
,
page
.
toString
());
if
(
p
er_page
)
params
.
append
(
'page_size'
,
per_pag
e
.
toString
());
if
(
page
Index
)
params
.
append
(
'page'
,
pageIndex
.
toString
());
if
(
p
ageSize
)
params
.
append
(
'page_size'
,
pageSiz
e
.
toString
());
const
queryString
=
params
.
toString
();
return
{
url
:
`/api/admin/notifications
${
queryString
?
`?
${
queryString
}
`
:
''
}
`
,
...
...
@@ -37,11 +37,11 @@ export const notificationApi = createApi({
invalidatesTags
:
[
"Notification"
]
}),
getAllActivity
:
builder
.
query
<
ActivityResponse
,
{
activity_type
:
string
,
status
?:
string
}
&
QueryParams
>
({
query
:
({
search
,
page
,
per_pag
e
,
activity_type
,
status
})
=>
{
query
:
({
search
,
page
Index
,
pageSiz
e
,
activity_type
,
status
})
=>
{
const
params
=
new
URLSearchParams
();
if
(
search
)
params
.
append
(
'search'
,
search
);
if
(
page
)
params
.
append
(
'page'
,
page
.
toString
());
if
(
p
er_page
)
params
.
append
(
'page_size'
,
per_pag
e
.
toString
());
if
(
page
Index
)
params
.
append
(
'page'
,
pageIndex
.
toString
());
if
(
p
ageSize
)
params
.
append
(
'page_size'
,
pageSiz
e
.
toString
());
if
(
activity_type
)
params
.
append
(
'type'
,
activity_type
.
toString
());
if
(
status
)
params
.
append
(
'status'
,
status
.
toString
());
const
queryString
=
params
.
toString
();
...
...
src/services/playerApi.ts
View file @
0f842d23
...
...
@@ -26,11 +26,11 @@ export const playerApi = createApi({
// GET ALL Players
getAllPlayer
:
builder
.
query
<
PlayerListResponse
,
QueryParams
>
({
query
:
({
search
,
page
,
per_pag
e
,
status
})
=>
{
query
:
({
search
,
page
Index
,
pageSiz
e
,
status
})
=>
{
const
params
=
new
URLSearchParams
();
if
(
search
)
params
.
append
(
"search"
,
search
);
if
(
page
)
params
.
append
(
"page"
,
page
.
toString
());
if
(
p
er_page
)
params
.
append
(
"page_size"
,
per_pag
e
.
toString
());
if
(
page
Index
)
params
.
append
(
"page"
,
pageIndex
.
toString
());
if
(
p
ageSize
)
params
.
append
(
"page_size"
,
pageSiz
e
.
toString
());
if
(
status
)
params
.
append
(
"status"
,
status
.
toString
());
const
queryString
=
params
.
toString
();
return
{
...
...
src/services/transaction.ts
View file @
0f842d23
...
...
@@ -18,11 +18,11 @@ export const transactionApi = createApi({
invalidatesTags
:
[
"Deposit"
]
}),
getAllDeposit
:
builder
.
query
<
DepositListProps
,
QueryParams
&
{
days
:
number
|
null
;
customRange
:
{
startDate
:
string
|
null
;
endDate
:
string
|
null
}
}
>
({
query
:
({
search
,
page
,
per_pag
e
,
days
,
customRange
})
=>
{
query
:
({
search
,
page
Index
,
pageSiz
e
,
days
,
customRange
})
=>
{
const
params
=
new
URLSearchParams
();
if
(
search
)
params
.
append
(
'search'
,
search
);
if
(
page
)
params
.
append
(
'page'
,
page
.
toString
());
if
(
p
er_page
)
params
.
append
(
'page_size'
,
per_pag
e
.
toString
());
if
(
page
Index
)
params
.
append
(
'page'
,
pageIndex
.
toString
());
if
(
p
ageSize
)
params
.
append
(
'page_size'
,
pageSiz
e
.
toString
());
if
(
days
)
params
.
append
(
'days'
,
days
.
toString
());
if
(
customRange
.
startDate
)
params
.
append
(
'start_date'
,
customRange
.
startDate
.
toString
());
if
(
customRange
.
endDate
)
params
.
append
(
'end_date'
,
customRange
.
endDate
.
toString
());
...
...
@@ -43,11 +43,11 @@ export const transactionApi = createApi({
invalidatesTags
:
[
"Withdrawl"
]
}),
getAllWithdrawl
:
builder
.
query
<
DepositListProps
,
QueryParams
&
{
days
:
number
|
null
;
customRange
:
{
startDate
:
string
|
null
;
endDate
:
string
|
null
}
}
>
({
query
:
({
search
,
page
,
per_pag
e
,
days
,
customRange
})
=>
{
query
:
({
search
,
page
Index
,
pageSiz
e
,
days
,
customRange
})
=>
{
const
params
=
new
URLSearchParams
();
if
(
search
)
params
.
append
(
'search'
,
search
);
if
(
page
)
params
.
append
(
'page'
,
page
.
toString
());
if
(
p
er_page
)
params
.
append
(
'page_size'
,
per_pag
e
.
toString
());
if
(
page
Index
)
params
.
append
(
'page'
,
pageIndex
.
toString
());
if
(
p
ageSize
)
params
.
append
(
'page_size'
,
pageSiz
e
.
toString
());
if
(
days
)
params
.
append
(
'days'
,
days
.
toString
());
if
(
customRange
.
startDate
)
params
.
append
(
'start_date'
,
customRange
.
startDate
.
toString
());
if
(
customRange
.
endDate
)
params
.
append
(
'end_date'
,
customRange
.
endDate
.
toString
());
...
...
@@ -61,11 +61,11 @@ export const transactionApi = createApi({
providesTags
:
[
"Withdrawl"
]
}),
getAllTransaction
:
builder
.
query
<
DepositListProps
,
QueryParams
&
{
status
?:
TransactionStatusProps
;
user_id
?:
string
|
number
;
game_id
?:
string
|
number
,
selectedGame
?:
string
;
selectedTransactionType
?:
string
,
start_date
?:
string
;
end_date
?:
string
;
}
>
({
query
:
({
search
,
page
,
per_pag
e
,
user_id
,
game_id
,
status
,
selectedGame
,
selectedTransactionType
,
start_date
,
end_date
})
=>
{
query
:
({
search
,
page
Index
,
pageSiz
e
,
user_id
,
game_id
,
status
,
selectedGame
,
selectedTransactionType
,
start_date
,
end_date
})
=>
{
const
params
=
new
URLSearchParams
();
if
(
search
)
params
.
append
(
'search'
,
search
);
if
(
page
)
params
.
append
(
'page'
,
page
.
toString
());
if
(
p
er_page
)
params
.
append
(
'page_size'
,
per_pag
e
.
toString
());
if
(
page
Index
)
params
.
append
(
'page'
,
pageIndex
.
toString
());
if
(
p
ageSize
)
params
.
append
(
'page_size'
,
pageSiz
e
.
toString
());
if
(
user_id
)
params
.
append
(
'user'
,
user_id
.
toString
());
if
(
game_id
)
params
.
append
(
'game'
,
game_id
.
toString
());
if
(
status
)
params
.
append
(
'status'
,
status
.
toString
());
...
...
src/types/config.ts
View file @
0f842d23
...
...
@@ -34,8 +34,8 @@ export interface GlobalResponse {
}
export
interface
QueryParams
{
page
?:
number
;
p
er_pag
e
?:
number
;
page
Index
?:
number
;
p
ageSiz
e
?:
number
;
search
?:
string
;
status
?:
string
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment