Skip to content

Commit

Permalink
change API route
Browse files Browse the repository at this point in the history
jaspalsingh-aot committed Apr 9, 2024
1 parent bff50e7 commit 989ffb1
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/users/src/app/controllers/user.controller.ts
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import { Resource, RoleMatchingMode, Roles, Unprotected } from 'nest-keycloak-co
import { KeycloakService } from 'src/app/services/keycloak.service';
import { AddUserToGroupDto } from 'src/app/dto/addUserToGroup';

@Controller('user')
@Controller('users')
@Resource('user-service')
export class UserController {
constructor(private readonly keyCloakService: KeycloakService) {}
2 changes: 1 addition & 1 deletion frontend/src/app/helpers/endpoints.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const USERS = "/user";
export const USERS = "/users";

export const GRAPHQL= "/graphql"

0 comments on commit 989ffb1

Please sign in to comment.