class DashOverlord::UseCases::V1::ChartConfigs::Index::Base

Public Instance Methods

final() click to toggle source
# File lib/dash_overlord/use_cases/v1/chart_configs/index/base.rb, line 14
def final
  context.data = Serializers::V1::ChartConfigs::Index.to_hash \
    context, status.ok? ? nil : false
end
perform() click to toggle source
# File lib/dash_overlord/use_cases/v1/chart_configs/index/base.rb, line 8
def perform
  invoke! Admins::FindCurrentAdmin
  invoke! FindChartConfigs
  invoke! SearchAndPaginateChartConfigs
end