mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-18 17:11:21 +00:00
Ensure that no source files have trailing whitespace at end of lines and ensure that all files end with a single trailing newline. This also adds Github Actions to enforce whitespace conventions.
19 lines
310 B
TypeScript
19 lines
310 B
TypeScript
import { FilterRule } from './filter-rule';
|
|
import { ObjectWithId } from './object-with-id';
|
|
|
|
export interface PaperlessSavedView extends ObjectWithId {
|
|
|
|
name?: string
|
|
|
|
show_on_dashboard?: boolean
|
|
|
|
show_in_sidebar?: boolean
|
|
|
|
sort_field: string
|
|
|
|
sort_reverse: boolean
|
|
|
|
filter_rules: FilterRule[]
|
|
|
|
}
|