akkounts/app/controllers/dashboard_controller.rb
Sebastian Kippe c62ce00184
Add main navigation bar
Make donations and invitations accessible to everyone
2020-12-27 14:03:40 +01:00

8 lines
148 B
Ruby

class DashboardController < ApplicationController
before_action :require_user_signed_in
def index
@current_section = "dashboard"
end
end