1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package tech.powerjob.server.auth.plugin;
|
| import tech.powerjob.server.auth.RoleScope;
|
| /**
| * desc
| *
| * @author tjq
| * @since 2024/2/11
| */
| public class SaveAppGrantPermissionPlugin extends SaveGrantPermissionPlugin {
| @Override
| protected RoleScope fetchRuleScope() {
| return RoleScope.APP;
| }
| }
|
|