pull/53/head
shao1121353141 2023-09-18 23:30:07 +08:00
parent 48a998c2c6
commit dd2666dd1b
3 changed files with 0 additions and 50 deletions

View File

@ -160,16 +160,6 @@ public class AppEventType {
*/
public static Type ADD_APP_GROUP = new Type("eiam:event:app_group:create",
"添加应用分组", APP_GROUP_RESOURCE, List.of(UserType.ADMIN));
/**
*
*/
public static Type ENABLE_APP_GROUP = new Type("eiam:event:app_group:enabled",
"启用应用分组", APP_GROUP_RESOURCE, List.of(UserType.ADMIN));
/**
*
*/
public static Type DISABLE_APP_GROUP = new Type("eiam:event:app_group:disabled",
"禁用应用分组", APP_GROUP_RESOURCE, List.of(UserType.ADMIN));
/**
*
*/

View File

@ -488,14 +488,6 @@ public enum EventType {
*
*/
ADD_APP_GROUP(AppEventType.ADD_APP_GROUP),
/**
*
*/
ENABLE_APP_GROUP(AppEventType.ENABLE_APP_GROUP),
/**
*
*/
DISABLE_APP_GROUP(AppEventType.DISABLE_APP_GROUP),
/**
*
*/

View File

@ -1,32 +0,0 @@
/*
* eiam-common - Employee Identity and Access Management
* Copyright © 2022-Present Jinan Yuanchuang Network Technology Co., Ltd. (support@topiam.cn)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package cn.topiam.employee.common.schema.field;
/**
* Input
*
* @author TopIAM
* Created by support@topiam.cn on 2023/4/12 21:28
*/
public class Input extends Field {
public Input(String title) {
super("string");
this.title = title;
}
}