Sha256: ad15b75e9e607afb54c949575d6e9cc82c55328cff81c87d6c2f3efdf99debc0

Contents?: true

Size: 326 Bytes

Versions: 1

Compression:

Stored size: 326 Bytes

Contents

# frozen_string_literal: true

class FormatsController < ApplicationController
  before_action :find_structure

  caches_page :index

  def index
    @services = Formats::Service.includes(:categories).sorted
    # respond_with @extras
  end

  private

  def find_structure
    load_structure(StructureType.formats)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
translation_cms-0.1.5 app/controllers/formats_controller.rb