mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
class Dashboard::ApplicationController < ApplicationController
|
|
layout 'dashboard'
|
|
|
|
private
|
|
|
|
def projects
|
|
@projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
|
|
end
|
|
end
|