Просмотр исходного кода

高速平台对接

pull/58/head
chenjiandong 1 год назад
Родитель
Сommit
b538da27b1
2 измененных файлов: 9 добавлений и 0 удалений
  1. +2
    -0
      src/main/java/com/tuoheng/gateway/config/WebSecurityConfig.java
  2. +7
    -0
      src/main/java/com/tuoheng/gateway/constants/AuthorityConstant.java

+ 2
- 0
src/main/java/com/tuoheng/gateway/config/WebSecurityConfig.java Просмотреть файл

@@ -73,6 +73,8 @@ public class WebSecurityConfig {
.pathMatchers("/pilot/admin/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_PILOT_ADMIN)
.pathMatchers("/hhz/admin/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_HHZ_ADMIN)
.pathMatchers("/hhz/api/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_HHZ_MP)
.pathMatchers("/freeway/admin/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_FREEWAY_ADMIN)
.pathMatchers("/freeway/miniprogram/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_FREEWAY_MP)
.pathMatchers("/oidc/admin/tenant/**", "/oidc/admin/client/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_OIDC_ADMIN)
.pathMatchers("/oidc/admin/user/**").authenticated()
//.pathMatchers(PERMIT_PATH).permitAll()

+ 7
- 0
src/main/java/com/tuoheng/gateway/constants/AuthorityConstant.java Просмотреть файл

@@ -33,4 +33,11 @@ public class AuthorityConstant {

public static final String SCOPE_TUOHNEG_HHZ_MP = "SCOPE_tuoheng-hhz-mp";

/**
* FreeWay 用户权限
*/
public static final String SCOPE_TUOHNEG_FREEWAY_ADMIN = "SCOPE_tuoheng-freeway-admin";

public static final String SCOPE_TUOHNEG_FREEWAY_MP = "SCOPE_tuoheng-freeway-mp";

}

Загрузка…
Отмена
Сохранить