Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3599380
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:21:38+00:00 2026-05-18T20:21:38+00:00

I understand that we’re supposed to avoid putting logic in the controller. So what

  • 0

I understand that we’re supposed to avoid putting logic in the controller. So what is the proper way to implement things like user access controls. Let’s suppose I have User, where each instance has a flag method admin? that determines whether the user can access information from other users.


Option 1: Put access controls in custom model

Model:

class User < ActiveRecord::Base
  def self.get_list(accessor)
    return [] unless accessor.admin?
    self.all
  end
end

Controller:

class UsersController < ApplicationController
  def index
    @users = User.get_list(current_user)
  end
end

current_user would probably be defined somewhere in the application controller.

Option 2: Put access controls in the controller

Model:

class User < ActiveRecord::Base
end

Controller:

class UsersController < ApplicationController
  def index
    @users = current_user.admin? User.all : []
  end
end

There are also some peripheral consequences such as where tests go and how they’re implemented.


My instinct is that the first of the two options is preferable, but I’ve only ever used option 2 in the past. Also, it seems like the generally accepted (as far as I can tell) practice of putting on action-wide access filters is done at the controller level as in:

class UsersController < ApplicationController
  before_filter :verify_logged_in
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T20:21:39+00:00Added an answer on May 18, 2026 at 8:21 pm

    Any logic controlling routing of your application belongs in your controller. As for your example, the first is preferable but really there’s not much in it.

    It’s easy for opinionated frameworks make us almost obsessive about doing things in a perceived correct way. In your example such a tiny amount of logic would, in my opinion, be perfectly fine to leave in your controller. If you were to abstract it, give it a descriptive name that described better what the method is doing otherwise you’re simply making your code needlessly difficult to read.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that in CUDA's memory hierachy, we have things like shared memory, texture
I understand that the best way to develop a free and paid version of
I understand that loops are a bad idea in python and I should avoid
I understand that unique IV is important in encrypting to prevent attacks like frequency
I understand that 0MQ is supposed to be faster than TCP Sockets in a
I understand that one can host multiple websites on windows azure, I would like
I understand that PHP stores a user's session id in a cookie called PHPSESSID
I understand that only the class can access the data so therefore it is
I understand that if else staments should say stuff like: if dog equals one,
I understand that sessions in HTTP is stateless and hence we have methods like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.