123456789101112131415161718192021222324252627 |
- class AdminPanelController < ApplicationController
-
- layout 'admin'
-
- def index
- redirect_to admin_dashboard_path
- end
-
- def dashboard
- @users = User.all
- @posts = BlogPost.all
- @files = Upload.all
- end
- def posts
- @posts = BlogPost.all
- end
- def users
- @users = User.all
- end
-
- def files
- @uploads = Upload.all
- end
- end
|