tap/app/controllers/users_controller.rb

34 lines
1,018 B
Ruby
Raw Normal View History

2014-11-06 15:25:27 +00:00
class UsersController < ApplicationController
def show
@user = User.find_by_id(params[:id]) || current_user
2015-02-10 06:15:25 +00:00
authorize! :read, @user
@orders = @user.orders.includes(:products).paginate(page: params[:page])
2015-02-09 16:06:24 +00:00
@products = @user.products.select("products.*", "sum(order_items.count) as count").group(:product_id)
@categories = @user.products.select("products.category", "sum(order_items.count) as count").group(:category)
2014-11-06 15:25:27 +00:00
end
2014-11-06 17:30:53 +00:00
2014-11-23 20:12:31 +00:00
def index
2015-01-06 19:18:01 +00:00
@users = User.members
2015-02-10 06:15:25 +00:00
authorize! :read, @users
2014-11-23 20:12:31 +00:00
end
2014-12-09 21:32:54 +00:00
def destroy
2015-02-10 06:15:25 +00:00
@user = User.find(params[:id])
authorize! :destroy, @users
@user.destroy
2014-12-09 21:32:54 +00:00
flash[:success] = "Succesfully removed user"
redirect_to action: :index
2014-12-09 21:32:54 +00:00
end
2014-12-10 13:18:56 +00:00
def dagschotel
user = User.find(params[:user_id])
user.dagschotel = Product.find(params[:product_id])
2014-12-17 06:31:51 +00:00
if user.save
flash[:success] = "Succesfully updated dagschotel"
2014-12-17 06:31:51 +00:00
else
flash[:error] = "Error updating dagschotel"
end
2014-12-10 13:18:56 +00:00
redirect_to edit_user_registration_path(user)
end
2014-11-06 15:25:27 +00:00
end