This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
class Api::V1::AppsController < ApplicationController
|
|
respond_to :json
|
|
|
|
def create
|
|
@app = Doorkeeper::Application.create!(app_params)
|
|
end
|
|
|
|
private
|
|
|
|
def app_params
|
|
params.permit(:name, :redirect_uri)
|
|
end
|
|
end
|