mirror of https://gitee.com/topiam/eiam
pull/53/head
parent
48a998c2c6
commit
dd2666dd1b
|
@ -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));
|
||||
/**
|
||||
* 编辑应用分组
|
||||
*/
|
||||
|
|
|
@ -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),
|
||||
/**
|
||||
* 修改应用分组
|
||||
*/
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue