class Doorkeeper::ApplicationsController
def application_params
def application_params if params.respond_to?(:permit) params.require(:application).permit(:name, :redirect_uri) else params[:application].slice(:name, :redirect_uri) rescue nil end end
def create
def create @application = Application.new(application_params) if @application.save flash[:notice] = I18n.t(:notice, :scope => [:doorkeeper, :flash, :applications, :create]) respond_with [:oauth, @application] else render :new end end
def destroy
def destroy flash[:notice] = I18n.t(:notice, :scope => [:doorkeeper, :flash, :applications, :destroy]) if @application.destroy redirect_to oauth_applications_url end
def edit
def edit end
def index
def index @applications = Application.all end
def new
def new @application = Application.new end
def set_application
def set_application @application = Application.find(params[:id]) end
def show
def show end
def update
def update if @application.update_attributes(application_params) flash[:notice] = I18n.t(:notice, :scope => [:doorkeeper, :flash, :applications, :update]) respond_with [:oauth, @application] else render :edit end end