Sha256: aa3fc0b8ce5d7d60d396df62fc3cd42da54d1b6e72c0c4cf679409886d1e459f
Contents?: true
Size: 1.46 KB
Versions: 7
Compression:
Stored size: 1.46 KB
Contents
module Saucy module ProjectsController extend ActiveSupport::Concern included do before_filter :authorize_member, :only => :show before_filter :authorize_admin, :except => [:show] before_filter :ensure_active_account, :only => [:show, :destroy, :index] layout Saucy::Layouts.to_proc end module InstanceMethods def new @project = current_account.projects.build_with_default_permissions end def create @project = current_account.projects.build(params[:project]) if @project.save flash[:notice] = "Project successfully created" redirect_to project_url(@project) else render :action => :new end end def edit current_project end def update if current_project.update_attributes params[:project] flash[:success] = 'Project was updated.' redirect_to account_projects_url(current_account) else render :action => :edit end end def show current_project end def destroy current_project.destroy flash[:success] = "Project has been deleted" redirect_to account_projects_url(current_project.account) end def index @projects = current_account.projects end private def current_project @project ||= ::Project.find_by_keyword!(params[:id]) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems