23 lines
427 B
Ruby
23 lines
427 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CountryStatesController < ApplicationController
|
||
|
before_action :set_country_state, except: :index
|
||
|
|
||
|
# GET /country_states
|
||
|
def index
|
||
|
authorize :country_state
|
||
|
@country_states = policy_scope(CountryState)
|
||
|
end
|
||
|
|
||
|
# GET /country_states/:id
|
||
|
def show
|
||
|
authorize @country_state
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_country_state
|
||
|
@country_state = CountryState.find params[:id]
|
||
|
end
|
||
|
end
|