9 lines
204 B
Ruby
9 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
|