Class: Fasta::Server::Actions::Show

Inherits:
Core::Read show all
Defined in:
lib/fasta/server/actions/show.rb

Direct Known Subclasses

Model::Show

Constant Summary

Constants inherited from Core::Responder

Core::Responder::DB

Instance Attribute Summary

Attributes inherited from Core::Responder

#headers, #params, #request

Instance Method Summary collapse

Methods inherited from Core::Read

#call

Methods inherited from Core::Responder

#body, call, #call, #db_table, #db_table_name, #initialize, #response_code, #to_rack_array, validate_fields

Constructor Details

This class inherits a constructor from Fasta::Server::Core::Responder

Instance Method Details

#fetchObject



7
8
9
10
# File 'lib/fasta/server/actions/show.rb', line 7

def fetch
  @response_code = 404 unless instance = db_table.first(id: params[:id])
  instance
end