about summary refs log tree commit diff
path: root/app/controllers/api/v1/apps_controller.rb
blob: d1db16cf2ae1771ed420b8039ea3e015f8b9e125 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Api::V1::AppsController < ApiController
  respond_to :json

  def create
    @app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris])
  end
end