|
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 | } |
|
2763 | 2767 | "basic_auth": [] |
2764 | 2768 | } |
2765 | 2769 | ], |
| 2770 | + "requestBody": { |
| 2771 | + "required": false, |
| 2772 | + "content": { |
| 2773 | + "application/json": { |
| 2774 | + "schema": { |
| 2775 | + "type": "object", |
| 2776 | + "properties": { |
| 2777 | + "viewId": { |
| 2778 | + "type": "integer", |
| 2779 | + "format": "int64", |
| 2780 | + "nullable": true, |
| 2781 | + "description": "View ID" |
| 2782 | + } |
| 2783 | + } |
| 2784 | + } |
| 2785 | + } |
| 2786 | + } |
| 2787 | + }, |
2766 | 2788 | "parameters": [ |
2767 | 2789 | { |
2768 | 2790 | "name": "tableId", |
|
2773 | 2795 | "type": "integer", |
2774 | 2796 | "format": "int64" |
2775 | 2797 | } |
2776 | | - }, |
2777 | | - { |
2778 | | - "name": "viewId", |
2779 | | - "in": "query", |
2780 | | - "description": "View ID", |
2781 | | - "schema": { |
2782 | | - "type": "integer", |
2783 | | - "format": "int64", |
2784 | | - "nullable": true |
2785 | | - } |
2786 | 2798 | } |
2787 | 2799 | ], |
2788 | 2800 | "responses": { |
|
2996 | 3008 | "nullable": true, |
2997 | 3009 | "description": "Can select groups, if column type is usergroup" |
2998 | 3010 | }, |
| 3011 | + "usergroupSelectTeams": { |
| 3012 | + "type": "boolean", |
| 3013 | + "nullable": true, |
| 3014 | + "description": "Can select teams, if column type is usergroup" |
| 3015 | + }, |
2999 | 3016 | "usergroupShowUserStatus": { |
3000 | 3017 | "type": "boolean", |
3001 | 3018 | "nullable": true, |
|
3345 | 3362 | "nullable": true, |
3346 | 3363 | "description": "Can select groups, if column type is usergroup" |
3347 | 3364 | }, |
| 3365 | + "usergroupSelectTeams": { |
| 3366 | + "type": "boolean", |
| 3367 | + "nullable": true, |
| 3368 | + "description": "Can select teams, if column type is usergroup" |
| 3369 | + }, |
3348 | 3370 | "usergroupShowUserStatus": { |
3349 | 3371 | "type": "boolean", |
3350 | 3372 | "nullable": true, |
|
3559 | 3581 | "nullable": true, |
3560 | 3582 | "description": "Can select groups, if column type is usergroup" |
3561 | 3583 | }, |
| 3584 | + "usergroupSelectTeams": { |
| 3585 | + "type": "boolean", |
| 3586 | + "nullable": true, |
| 3587 | + "description": "Can select teams, if column type is usergroup" |
| 3588 | + }, |
3562 | 3589 | "usergroupShowUserStatus": { |
3563 | 3590 | "type": "boolean", |
3564 | 3591 | "nullable": true, |
|
3805 | 3832 | "basic_auth": [] |
3806 | 3833 | } |
3807 | 3834 | ], |
| 3835 | + "requestBody": { |
| 3836 | + "required": false, |
| 3837 | + "content": { |
| 3838 | + "application/json": { |
| 3839 | + "schema": { |
| 3840 | + "type": "object", |
| 3841 | + "properties": { |
| 3842 | + "limit": { |
| 3843 | + "type": "integer", |
| 3844 | + "format": "int64", |
| 3845 | + "nullable": true, |
| 3846 | + "description": "Limit" |
| 3847 | + }, |
| 3848 | + "offset": { |
| 3849 | + "type": "integer", |
| 3850 | + "format": "int64", |
| 3851 | + "nullable": true, |
| 3852 | + "description": "Offset" |
| 3853 | + } |
| 3854 | + } |
| 3855 | + } |
| 3856 | + } |
| 3857 | + } |
| 3858 | + }, |
3808 | 3859 | "parameters": [ |
3809 | 3860 | { |
3810 | 3861 | "name": "tableId", |
|
3815 | 3866 | "type": "integer", |
3816 | 3867 | "format": "int64" |
3817 | 3868 | } |
3818 | | - }, |
3819 | | - { |
3820 | | - "name": "limit", |
3821 | | - "in": "query", |
3822 | | - "description": "Limit", |
3823 | | - "schema": { |
3824 | | - "type": "integer", |
3825 | | - "format": "int64", |
3826 | | - "nullable": true |
3827 | | - } |
3828 | | - }, |
3829 | | - { |
3830 | | - "name": "offset", |
3831 | | - "in": "query", |
3832 | | - "description": "Offset", |
3833 | | - "schema": { |
3834 | | - "type": "integer", |
3835 | | - "format": "int64", |
3836 | | - "nullable": true |
3837 | | - } |
3838 | 3869 | } |
3839 | 3870 | ], |
3840 | 3871 | "responses": { |
|
3920 | 3951 | "basic_auth": [] |
3921 | 3952 | } |
3922 | 3953 | ], |
| 3954 | + "requestBody": { |
| 3955 | + "required": false, |
| 3956 | + "content": { |
| 3957 | + "application/json": { |
| 3958 | + "schema": { |
| 3959 | + "type": "object", |
| 3960 | + "properties": { |
| 3961 | + "limit": { |
| 3962 | + "type": "integer", |
| 3963 | + "format": "int64", |
| 3964 | + "nullable": true, |
| 3965 | + "description": "Limit" |
| 3966 | + }, |
| 3967 | + "offset": { |
| 3968 | + "type": "integer", |
| 3969 | + "format": "int64", |
| 3970 | + "nullable": true, |
| 3971 | + "description": "Offset" |
| 3972 | + } |
| 3973 | + } |
| 3974 | + } |
| 3975 | + } |
| 3976 | + } |
| 3977 | + }, |
3923 | 3978 | "parameters": [ |
3924 | 3979 | { |
3925 | 3980 | "name": "tableId", |
|
3930 | 3985 | "type": "integer", |
3931 | 3986 | "format": "int64" |
3932 | 3987 | } |
3933 | | - }, |
3934 | | - { |
3935 | | - "name": "limit", |
3936 | | - "in": "query", |
3937 | | - "description": "Limit", |
3938 | | - "schema": { |
3939 | | - "type": "integer", |
3940 | | - "format": "int64", |
3941 | | - "nullable": true |
3942 | | - } |
3943 | | - }, |
3944 | | - { |
3945 | | - "name": "offset", |
3946 | | - "in": "query", |
3947 | | - "description": "Offset", |
3948 | | - "schema": { |
3949 | | - "type": "integer", |
3950 | | - "format": "int64", |
3951 | | - "nullable": true |
3952 | | - } |
3953 | 3988 | } |
3954 | 3989 | ], |
3955 | 3990 | "responses": { |
|
4136 | 4171 | "basic_auth": [] |
4137 | 4172 | } |
4138 | 4173 | ], |
| 4174 | + "requestBody": { |
| 4175 | + "required": false, |
| 4176 | + "content": { |
| 4177 | + "application/json": { |
| 4178 | + "schema": { |
| 4179 | + "type": "object", |
| 4180 | + "properties": { |
| 4181 | + "limit": { |
| 4182 | + "type": "integer", |
| 4183 | + "format": "int64", |
| 4184 | + "nullable": true, |
| 4185 | + "description": "Limit" |
| 4186 | + }, |
| 4187 | + "offset": { |
| 4188 | + "type": "integer", |
| 4189 | + "format": "int64", |
| 4190 | + "nullable": true, |
| 4191 | + "description": "Offset" |
| 4192 | + } |
| 4193 | + } |
| 4194 | + } |
| 4195 | + } |
| 4196 | + } |
| 4197 | + }, |
4139 | 4198 | "parameters": [ |
4140 | 4199 | { |
4141 | 4200 | "name": "viewId", |
|
4146 | 4205 | "type": "integer", |
4147 | 4206 | "format": "int64" |
4148 | 4207 | } |
4149 | | - }, |
4150 | | - { |
4151 | | - "name": "limit", |
4152 | | - "in": "query", |
4153 | | - "description": "Limit", |
4154 | | - "schema": { |
4155 | | - "type": "integer", |
4156 | | - "format": "int64", |
4157 | | - "nullable": true |
4158 | | - } |
4159 | | - }, |
4160 | | - { |
4161 | | - "name": "offset", |
4162 | | - "in": "query", |
4163 | | - "description": "Offset", |
4164 | | - "schema": { |
4165 | | - "type": "integer", |
4166 | | - "format": "int64", |
4167 | | - "nullable": true |
4168 | | - } |
4169 | 4208 | } |
4170 | 4209 | ], |
4171 | 4210 | "responses": { |
|
7913 | 7952 | "type": "boolean", |
7914 | 7953 | "description": "Whether you can select groups" |
7915 | 7954 | }, |
| 7955 | + "usergroupSelectTeams": { |
| 7956 | + "type": "boolean", |
| 7957 | + "description": "Whether you can select teams" |
| 7958 | + }, |
7916 | 7959 | "showUserStatus": { |
7917 | 7960 | "type": "boolean", |
7918 | 7961 | "description": "Whether to show the user's status" |
|
0 commit comments