Class: Iro::DatapointsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/iro/datapoints_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#home, #schwab_sync

Instance Method Details

#createObject

params: d, k, v



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/controllers/iro/datapoints_controller.rb', line 5

def create
  authorize! :create, Iro::Datapoint
  begin
    Iro::Datapoint.create!(
      date:  params[:d],
      kind:  params[:k],
      value: params[:v],
    )
    render json: { status: :ok }
  rescue Mongoid::Errors::Validations => e
    render json: { status: 401 }, status: 401
  end
end

#indexObject



19
20
21
22
23
# File 'app/controllers/iro/datapoints_controller.rb', line 19

def index
  authorize! :datapoints_index, Iro
  @symbol = params[:symbol] || params[:q]
  @datapoints = Iro::Datapoint.where( symbol: @symbol ).order_by( quote_at: :desc ).limit(100)
end