tap/app/controllers/users_controller.rb

32 lines
988 B
Ruby
Raw Normal View History

2014-11-06 16:25:27 +01:00
class UsersController < ApplicationController
2014-12-17 07:31:51 +01:00
load_and_authorize_resource only: [:destroy]
2014-11-06 16:25:27 +01:00
def show
@user = User.find_by_id(params[:id]) || current_user
@orders = Order.joins(:products).select(:count, "products.*", "orders.id").where(user: @user).group_by &:id
@products = @user.products.select("products.*", "count(products.id) as count").group(:product_id)
@categories = @user.products.select("products.category", "count(products.category) as count").group(:category)
2014-11-06 16:25:27 +01:00
end
2014-11-06 18:30:53 +01:00
2014-11-23 21:12:31 +01:00
def index
2015-01-06 20:18:01 +01:00
@users = User.members
2014-11-23 21:12:31 +01:00
end
2014-12-09 22:32:54 +01:00
def destroy
User.find(params[:id]).destroy
flash[:success] = "Succesfully removed user"
redirect_to users_path
end
2014-12-10 14:18:56 +01:00
def dagschotel
user = User.find(params[:user_id])
user.dagschotel = Product.find(params[:product_id])
2014-12-17 07:31:51 +01:00
if user.save
flash[:success] = "Succesfully updated dagschotel"
2014-12-17 07:31:51 +01:00
else
flash[:error] = "Error updating dagschotel"
end
2014-12-10 14:18:56 +01:00
redirect_to edit_user_registration_path(user)
end
2014-11-06 16:25:27 +01:00
end