mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
backend integration
This commit is contained in:
committed by
Aiden McClelland
parent
064c905bd3
commit
4b2a032ae0
@@ -17,10 +17,10 @@ export class ServerLogsPage {
|
||||
) { }
|
||||
|
||||
fetchFetchLogs (): Function {
|
||||
return async (params: { before?: string, after?: string, limit: number }) => {
|
||||
return async (params: { before_flag?: boolean, limit?: number, cursor?: string }) => {
|
||||
return this.embassyApi.getServerLogs({
|
||||
after: params.after,
|
||||
before: params.before,
|
||||
before_flag: params.before_flag,
|
||||
cursor: params.cursor,
|
||||
limit: params.limit,
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user