diff options
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/follows/follows.routes.ts | 2 | ||||
-rw-r--r-- | client/src/app/+admin/follows/shared/follow.service.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/follows/follows.routes.ts b/client/src/app/+admin/follows/follows.routes.ts index b7d44f75b..e84c79e82 100644 --- a/client/src/app/+admin/follows/follows.routes.ts +++ b/client/src/app/+admin/follows/follows.routes.ts | |||
@@ -13,7 +13,7 @@ export const FollowsRoutes: Routes = [ | |||
13 | component: FollowsComponent, | 13 | component: FollowsComponent, |
14 | canActivate: [ UserRightGuard ], | 14 | canActivate: [ UserRightGuard ], |
15 | data: { | 15 | data: { |
16 | userRight: UserRight.MANAGE_APPLICATION_FOLLOW | 16 | userRight: UserRight.MANAGE_SERVER_FOLLOW |
17 | }, | 17 | }, |
18 | children: [ | 18 | children: [ |
19 | { | 19 | { |
diff --git a/client/src/app/+admin/follows/shared/follow.service.ts b/client/src/app/+admin/follows/shared/follow.service.ts index 3dc91dfca..d64361ee3 100644 --- a/client/src/app/+admin/follows/shared/follow.service.ts +++ b/client/src/app/+admin/follows/shared/follow.service.ts | |||
@@ -11,7 +11,7 @@ import { AccountFollow, ResultList } from '../../../../../../shared' | |||
11 | 11 | ||
12 | @Injectable() | 12 | @Injectable() |
13 | export class FollowService { | 13 | export class FollowService { |
14 | private static BASE_APPLICATION_URL = API_URL + '/api/v1/application' | 14 | private static BASE_APPLICATION_URL = API_URL + '/api/v1/server' |
15 | 15 | ||
16 | constructor ( | 16 | constructor ( |
17 | private authHttp: HttpClient, | 17 | private authHttp: HttpClient, |