mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
34 lines
870 B
Ruby
34 lines
870 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LinkedRepository < Repository
|
|
enum permission_level: Extends::SHARED_OBJECTS_PERMISSION_LEVELS.except(:shared_write)
|
|
|
|
def shareable_write?
|
|
false
|
|
end
|
|
|
|
def default_table_state
|
|
state = Constants::REPOSITORY_TABLE_DEFAULT_STATE.deep_dup
|
|
state['order'] = [[3, 'asc']]
|
|
state['ColReorder'] << state['ColReorder'].length
|
|
state['columns'].insert(1, Constants::REPOSITORY_TABLE_STATE_CUSTOM_COLUMN_TEMPLATE)
|
|
state
|
|
end
|
|
|
|
def default_sortable_columns
|
|
[
|
|
'assigned',
|
|
'repository_rows.id',
|
|
'repository_rows.name',
|
|
'repository_rows.created_at',
|
|
'users.full_name',
|
|
'repository_rows.archived_on',
|
|
'archived_bies_repository_rows.full_name',
|
|
'repository_rows.external_id'
|
|
]
|
|
end
|
|
|
|
def default_search_fileds
|
|
super << 'repository_rows.external_id'
|
|
end
|
|
end
|