|
95 | 95 | "usergroupMultipleItems", |
96 | 96 | "usergroupSelectUsers", |
97 | 97 | "usergroupSelectGroups", |
| 98 | + "usergroupSelectTeams", |
98 | 99 | "showUserStatus" |
99 | 100 | ], |
100 | 101 | "properties": { |
|
190 | 191 | "usergroupSelectGroups": { |
191 | 192 | "type": "boolean" |
192 | 193 | }, |
| 194 | + "usergroupSelectTeams": { |
| 195 | + "type": "boolean" |
| 196 | + }, |
193 | 197 | "showUserStatus": { |
194 | 198 | "type": "boolean" |
195 | 199 | } |
|
2745 | 2749 | "basic_auth": [] |
2746 | 2750 | } |
2747 | 2751 | ], |
| 2752 | + "requestBody": { |
| 2753 | + "required": false, |
| 2754 | + "content": { |
| 2755 | + "application/json": { |
| 2756 | + "schema": { |
| 2757 | + "type": "object", |
| 2758 | + "properties": { |
| 2759 | + "viewId": { |
| 2760 | + "type": "integer", |
| 2761 | + "format": "int64", |
| 2762 | + "nullable": true, |
| 2763 | + "description": "View ID" |
| 2764 | + } |
| 2765 | + } |
| 2766 | + } |
| 2767 | + } |
| 2768 | + } |
| 2769 | + }, |
2748 | 2770 | "parameters": [ |
2749 | 2771 | { |
2750 | 2772 | "name": "tableId", |
|
2755 | 2777 | "type": "integer", |
2756 | 2778 | "format": "int64" |
2757 | 2779 | } |
2758 | | - }, |
2759 | | - { |
2760 | | - "name": "viewId", |
2761 | | - "in": "query", |
2762 | | - "description": "View ID", |
2763 | | - "schema": { |
2764 | | - "type": "integer", |
2765 | | - "format": "int64", |
2766 | | - "nullable": true |
2767 | | - } |
2768 | 2780 | } |
2769 | 2781 | ], |
2770 | 2782 | "responses": { |
|
2978 | 2990 | "nullable": true, |
2979 | 2991 | "description": "Can select groups, if column type is usergroup" |
2980 | 2992 | }, |
| 2993 | + "usergroupSelectTeams": { |
| 2994 | + "type": "boolean", |
| 2995 | + "nullable": true, |
| 2996 | + "description": "Can select teams, if column type is usergroup" |
| 2997 | + }, |
2981 | 2998 | "usergroupShowUserStatus": { |
2982 | 2999 | "type": "boolean", |
2983 | 3000 | "nullable": true, |
|
3327 | 3344 | "nullable": true, |
3328 | 3345 | "description": "Can select groups, if column type is usergroup" |
3329 | 3346 | }, |
| 3347 | + "usergroupSelectTeams": { |
| 3348 | + "type": "boolean", |
| 3349 | + "nullable": true, |
| 3350 | + "description": "Can select teams, if column type is usergroup" |
| 3351 | + }, |
3330 | 3352 | "usergroupShowUserStatus": { |
3331 | 3353 | "type": "boolean", |
3332 | 3354 | "nullable": true, |
|
3541 | 3563 | "nullable": true, |
3542 | 3564 | "description": "Can select groups, if column type is usergroup" |
3543 | 3565 | }, |
| 3566 | + "usergroupSelectTeams": { |
| 3567 | + "type": "boolean", |
| 3568 | + "nullable": true, |
| 3569 | + "description": "Can select teams, if column type is usergroup" |
| 3570 | + }, |
3544 | 3571 | "usergroupShowUserStatus": { |
3545 | 3572 | "type": "boolean", |
3546 | 3573 | "nullable": true, |
|
3787 | 3814 | "basic_auth": [] |
3788 | 3815 | } |
3789 | 3816 | ], |
| 3817 | + "requestBody": { |
| 3818 | + "required": false, |
| 3819 | + "content": { |
| 3820 | + "application/json": { |
| 3821 | + "schema": { |
| 3822 | + "type": "object", |
| 3823 | + "properties": { |
| 3824 | + "limit": { |
| 3825 | + "type": "integer", |
| 3826 | + "format": "int64", |
| 3827 | + "nullable": true, |
| 3828 | + "description": "Limit" |
| 3829 | + }, |
| 3830 | + "offset": { |
| 3831 | + "type": "integer", |
| 3832 | + "format": "int64", |
| 3833 | + "nullable": true, |
| 3834 | + "description": "Offset" |
| 3835 | + } |
| 3836 | + } |
| 3837 | + } |
| 3838 | + } |
| 3839 | + } |
| 3840 | + }, |
3790 | 3841 | "parameters": [ |
3791 | 3842 | { |
3792 | 3843 | "name": "tableId", |
|
3797 | 3848 | "type": "integer", |
3798 | 3849 | "format": "int64" |
3799 | 3850 | } |
3800 | | - }, |
3801 | | - { |
3802 | | - "name": "limit", |
3803 | | - "in": "query", |
3804 | | - "description": "Limit", |
3805 | | - "schema": { |
3806 | | - "type": "integer", |
3807 | | - "format": "int64", |
3808 | | - "nullable": true |
3809 | | - } |
3810 | | - }, |
3811 | | - { |
3812 | | - "name": "offset", |
3813 | | - "in": "query", |
3814 | | - "description": "Offset", |
3815 | | - "schema": { |
3816 | | - "type": "integer", |
3817 | | - "format": "int64", |
3818 | | - "nullable": true |
3819 | | - } |
3820 | 3851 | } |
3821 | 3852 | ], |
3822 | 3853 | "responses": { |
|
3902 | 3933 | "basic_auth": [] |
3903 | 3934 | } |
3904 | 3935 | ], |
| 3936 | + "requestBody": { |
| 3937 | + "required": false, |
| 3938 | + "content": { |
| 3939 | + "application/json": { |
| 3940 | + "schema": { |
| 3941 | + "type": "object", |
| 3942 | + "properties": { |
| 3943 | + "limit": { |
| 3944 | + "type": "integer", |
| 3945 | + "format": "int64", |
| 3946 | + "nullable": true, |
| 3947 | + "description": "Limit" |
| 3948 | + }, |
| 3949 | + "offset": { |
| 3950 | + "type": "integer", |
| 3951 | + "format": "int64", |
| 3952 | + "nullable": true, |
| 3953 | + "description": "Offset" |
| 3954 | + } |
| 3955 | + } |
| 3956 | + } |
| 3957 | + } |
| 3958 | + } |
| 3959 | + }, |
3905 | 3960 | "parameters": [ |
3906 | 3961 | { |
3907 | 3962 | "name": "tableId", |
|
3912 | 3967 | "type": "integer", |
3913 | 3968 | "format": "int64" |
3914 | 3969 | } |
3915 | | - }, |
3916 | | - { |
3917 | | - "name": "limit", |
3918 | | - "in": "query", |
3919 | | - "description": "Limit", |
3920 | | - "schema": { |
3921 | | - "type": "integer", |
3922 | | - "format": "int64", |
3923 | | - "nullable": true |
3924 | | - } |
3925 | | - }, |
3926 | | - { |
3927 | | - "name": "offset", |
3928 | | - "in": "query", |
3929 | | - "description": "Offset", |
3930 | | - "schema": { |
3931 | | - "type": "integer", |
3932 | | - "format": "int64", |
3933 | | - "nullable": true |
3934 | | - } |
3935 | 3970 | } |
3936 | 3971 | ], |
3937 | 3972 | "responses": { |
|
4118 | 4153 | "basic_auth": [] |
4119 | 4154 | } |
4120 | 4155 | ], |
| 4156 | + "requestBody": { |
| 4157 | + "required": false, |
| 4158 | + "content": { |
| 4159 | + "application/json": { |
| 4160 | + "schema": { |
| 4161 | + "type": "object", |
| 4162 | + "properties": { |
| 4163 | + "limit": { |
| 4164 | + "type": "integer", |
| 4165 | + "format": "int64", |
| 4166 | + "nullable": true, |
| 4167 | + "description": "Limit" |
| 4168 | + }, |
| 4169 | + "offset": { |
| 4170 | + "type": "integer", |
| 4171 | + "format": "int64", |
| 4172 | + "nullable": true, |
| 4173 | + "description": "Offset" |
| 4174 | + } |
| 4175 | + } |
| 4176 | + } |
| 4177 | + } |
| 4178 | + } |
| 4179 | + }, |
4121 | 4180 | "parameters": [ |
4122 | 4181 | { |
4123 | 4182 | "name": "viewId", |
|
4128 | 4187 | "type": "integer", |
4129 | 4188 | "format": "int64" |
4130 | 4189 | } |
4131 | | - }, |
4132 | | - { |
4133 | | - "name": "limit", |
4134 | | - "in": "query", |
4135 | | - "description": "Limit", |
4136 | | - "schema": { |
4137 | | - "type": "integer", |
4138 | | - "format": "int64", |
4139 | | - "nullable": true |
4140 | | - } |
4141 | | - }, |
4142 | | - { |
4143 | | - "name": "offset", |
4144 | | - "in": "query", |
4145 | | - "description": "Offset", |
4146 | | - "schema": { |
4147 | | - "type": "integer", |
4148 | | - "format": "int64", |
4149 | | - "nullable": true |
4150 | | - } |
4151 | 4190 | } |
4152 | 4191 | ], |
4153 | 4192 | "responses": { |
|
7895 | 7934 | "type": "boolean", |
7896 | 7935 | "description": "Whether you can select groups" |
7897 | 7936 | }, |
| 7937 | + "usergroupSelectTeams": { |
| 7938 | + "type": "boolean", |
| 7939 | + "description": "Whether you can select teams" |
| 7940 | + }, |
7898 | 7941 | "showUserStatus": { |
7899 | 7942 | "type": "boolean", |
7900 | 7943 | "description": "Whether to show the user's status" |
|
0 commit comments