Sha256: 1578582c2cb8a839b7baa42b4956ae43bc4d9e6e14cff76ff286c094e24fad4c
Contents?: true
Size: 990 Bytes
Versions: 6
Compression:
Stored size: 990 Bytes
Contents
module Doorkeeper class ApplicationsController < Doorkeeper::ApplicationController respond_to :html before_filter :authenticate_admin! def index @applications = Application.all end def new @application = Application.new end def create @application = Application.new(params[:application]) flash[:notice] = "Application created" if @application.save respond_with @application end def show @application = Application.find(params[:id]) end def edit @application = Application.find(params[:id]) end def update @application = Application.find(params[:id]) flash[:notice] = "Application updated" if @application.update_attributes(params[:application]) respond_with @application end def destroy @application = Application.find(params[:id]) flash[:notice] = "Application deleted" if @application.destroy redirect_to applications_url end end end
Version data entries
6 entries across 6 versions & 1 rubygems