15 lines
271 B
Ruby
15 lines
271 B
Ruby
class CnasController < ApplicationController
|
|
def index
|
|
@cnas = Cna.all
|
|
end
|
|
|
|
def show
|
|
@cna = Cna.find(params[:id])
|
|
render json: @cna.to_json
|
|
end
|
|
|
|
def show_for_cna
|
|
@cna = Cna.find_by_cna_id(params[:cna_id])
|
|
render json: @cna.to_json
|
|
end
|
|
end
|