Class: Workarea::Api::Admin::PaymentProfilesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/workarea/api/admin/payment_profiles_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_user, #sort_direction, #sort_field

Instance Method Details

#bulkObject



283
284
285
286
287
288
289
290
# File 'app/controllers/workarea/api/admin/payment_profiles_controller.rb', line 283

def bulk
  @bulk = Api::Admin::BulkUpsert.create!(
    klass: Payment::Profile,
    data: params[:payment_profiles].map(&:to_h)
  )

  head :no_content
end

#createObject



106
107
108
109
110
111
112
113
# File 'app/controllers/workarea/api/admin/payment_profiles_controller.rb', line 106

def create
  @payment_profile = Payment::Profile.create!(params[:payment_profile])
  respond_with(
    { payment_profile: @payment_profile },
    { status: :created,
    location: payment_profile_path(@payment_profile) }
  )
end

#destroyObject



292
293
294
295
# File 'app/controllers/workarea/api/admin/payment_profiles_controller.rb', line 292

def destroy
  @payment_profile.destroy
  head :no_content
end

#indexObject



97
98
99
100
101
102
103
104
# File 'app/controllers/workarea/api/admin/payment_profiles_controller.rb', line 97

def index
  @payment_profiles = Payment::Profile
                        .all
                        .order_by(sort_field => sort_direction)
                        .page(params[:page])

  respond_with payment_profiles: @payment_profiles
end

#showObject



245
246
247
# File 'app/controllers/workarea/api/admin/payment_profiles_controller.rb', line 245

def show
  respond_with payment_profile: @payment_profile
end

#updateObject



249
250
251
252
# File 'app/controllers/workarea/api/admin/payment_profiles_controller.rb', line 249

def update
  @payment_profile.update_attributes!(params[:payment_profile])
  respond_with payment_profile: @payment_profile
end