ソースを参照

高速平台对接

pull/58/head
chenjiandong 1年前
コミット
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";

}

読み込み中…
キャンセル
保存