2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
class ContainerRepositoriesSerializer < BaseSerializer
|
2020-03-13 15:44:24 +05:30
|
|
|
include WithPagination
|
2018-03-17 18:26:18 +05:30
|
|
|
entity ContainerRepositoryEntity
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
def represent_read_only(resource)
|
|
|
|
represent(resource, except: [:destroy_path])
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|