mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
54 lines
973 B
Ruby
54 lines
973 B
Ruby
|
class MapsController < ApplicationController
|
||
|
before_filter :get_map, :only => [:show, :edit, :update, :destroy]
|
||
|
|
||
|
def index
|
||
|
@maps = Map.basic
|
||
|
end
|
||
|
|
||
|
def show
|
||
|
end
|
||
|
|
||
|
def new
|
||
|
@map = Map.new
|
||
|
raise AccessError unless @map.can_create? cuser
|
||
|
end
|
||
|
|
||
|
def edit
|
||
|
raise AccessError unless @map.can_update? cuser
|
||
|
end
|
||
|
|
||
|
def create
|
||
|
@map = Map.new params[:map]
|
||
|
raise AccessError unless @map.can_create? cuser
|
||
|
|
||
|
if @map.save
|
||
|
flash[:notice] = t(:maps_create)
|
||
|
redirect_to @map
|
||
|
else
|
||
|
render :action => "new"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def update
|
||
|
raise AccessError unless @map.can_update? cuser
|
||
|
if @map.update_attributes(params[:map])
|
||
|
flash[:notice] = t(:maps_update)
|
||
|
redirect_to @map
|
||
|
else
|
||
|
render :action => "edit"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def destroy
|
||
|
raise AccessError unless @map.can_destroy? cuser
|
||
|
@map.destroy
|
||
|
redirect_to(maps_url)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def get_map
|
||
|
@map = Map.find params[:id]
|
||
|
end
|
||
|
end
|