chore: applied review changes for resolvers
This commit is contained in:
parent
626d703d77
commit
a5a14f6c76
1 changed files with 5 additions and 5 deletions
|
|
@ -36,7 +36,7 @@ export class UserHistoryResolver {
|
|||
resMetadata: string,
|
||||
@Args({
|
||||
name: 'reqType',
|
||||
description: 'string that denotes type of request REST or GQL',
|
||||
description: 'Request type, REST or GQL',
|
||||
})
|
||||
reqType: string,
|
||||
): Promise<UserHistory> {
|
||||
|
|
@ -54,11 +54,11 @@ export class UserHistoryResolver {
|
|||
description: 'Stars/Unstars a REST/GQL request in user history',
|
||||
})
|
||||
@UseGuards(GqlAuthGuard)
|
||||
async starUnstarRequestInHistory(
|
||||
async toggleHistoryStarStatus(
|
||||
@GqlUser() user: User,
|
||||
@Args({
|
||||
name: 'id',
|
||||
description: 'request id in history',
|
||||
description: 'ID of User History',
|
||||
})
|
||||
id: string,
|
||||
): Promise<UserHistory> {
|
||||
|
|
@ -76,7 +76,7 @@ export class UserHistoryResolver {
|
|||
@GqlUser() user: User,
|
||||
@Args({
|
||||
name: 'id',
|
||||
description: 'request id in history',
|
||||
description: 'ID of User History',
|
||||
})
|
||||
id: string,
|
||||
): Promise<UserHistory> {
|
||||
|
|
@ -95,7 +95,7 @@ export class UserHistoryResolver {
|
|||
@GqlUser() user: User,
|
||||
@Args({
|
||||
name: 'reqType',
|
||||
description: 'string that denotes type of request REST or GQL',
|
||||
description: 'Request type, REST or GQL',
|
||||
})
|
||||
reqType: string,
|
||||
): Promise<number> {
|
||||
|
|
|
|||
Loading…
Reference in a new issue