Commit 319cb063 authored by Rémy Coutable's avatar Rémy Coutable

Resolve conflict in app/controllers/admin/dashboard_controller.rb

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 753f2eb3
class Admin::DashboardController < Admin::ApplicationController class Admin::DashboardController < Admin::ApplicationController
def index def index
<<<<<<< HEAD
@projects = Project.without_deleted.with_route.limit(10)
@users = User.limit(10)
@groups = Group.with_route.limit(10)
@license = License.current
=======
@projects = Project.order_id_desc.without_deleted.with_route.limit(10) @projects = Project.order_id_desc.without_deleted.with_route.limit(10)
@users = User.order_id_desc.limit(10) @users = User.order_id_desc.limit(10)
@groups = Group.order_id_desc.with_route.limit(10) @groups = Group.order_id_desc.with_route.limit(10)
>>>>>>> upstream/master @license = License.current
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment