sadem_app/app/controllers/admin/albums_controller.rb
Nicolas Bally 000500e534 init
2020-02-25 02:33:11 +01:00

54 lines
978 B
Ruby

# -*- encoding : utf-8 -*-
class Admin::AlbumsController < ApplicationController
def new
@album = Album.new()
end
def create
@album = Album.new(params.require(:album).permit!)
@album_create = true
if @album.save
@albums = Album.all.order(:name)
else
render :action => :new
end
end
def edit
@album = Album.find(params[:id])
end
def update
@album = Album.find(params[:id])
@album_update = true
if @album.update_attributes(params.require(:album).permit!)
@albums = Album.all(:order => :name)
else
render :action => :edit
end
end
def destroy
@album = Album.find(params[:id])
if @album.id != 1
@album.delete
end
end
def change_album
@album = Album.find(params[:id])
@image_files = ImageFile.where(:id => params[:image_files_id])
@image_files.update_all :album_id => @album.id
render :inline => "ok"
end
end