File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
backend/src/entities/table-settings/common-table-settings Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,10 @@ export class TableSettingsController {
191191 @Body ( 'icon' ) icon : string ,
192192 @Body ( 'allow_csv_export' ) allow_csv_export : boolean ,
193193 @Body ( 'allow_csv_import' ) allow_csv_import : boolean ,
194+ @Body ( 'list_per_page' ) list_per_page : number ,
195+ @Body ( 'list_fields' ) list_fields : string [ ] ,
196+ @Body ( 'ordering' ) ordering : string ,
197+ @Body ( 'ordering_field' ) ordering_field : string ,
194198 @UserId ( ) userId : string ,
195199 @MasterPassword ( ) masterPwd : string ,
196200 ) : Promise < FoundTableSettingsDs > {
@@ -215,6 +219,10 @@ export class TableSettingsController {
215219 icon : icon ,
216220 allow_csv_export : allow_csv_export ,
217221 allow_csv_import : allow_csv_import ,
222+ list_fields,
223+ list_per_page,
224+ ordering,
225+ ordering_field,
218226 } ;
219227
220228 const errors = this . validateParameters ( inputData ) ;
You can’t perform that action at this time.
0 commit comments