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 9001635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:27:46+00:00 2026-06-16T00:27:46+00:00

I have a Log model that belongs to User and Firm. For setting this

  • 0

I have a Log model that belongs to User and Firm. For setting this I have this code in the logs_controller’s create action.

 def create
     @log = Log.new(params[:log])
     @log.user = current_user
     @log.firm = current_firm
     @log.save
   end

current_user and current_firm are helper methods from the application_helper.rb

While this works it makes the controller fat. How can I move this to the model?

  • 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-06-16T00:27:47+00:00Added an answer on June 16, 2026 at 12:27 am

    I believe this sort of functionality belongs in a ‘worker’ class in lib/. My action method might look like

    def create
      @log = LogWorker.create(params[:log], current_user, current_firm)
    end
    

    And then I’d have a module in lib/log_worker.rb like

    module LogWorker
      extend self
    
      def create(params, user, firm)
        log      = Log.new(params)
        log.user = user
        log.firm = firm
    
        log.save
      end
    end
    

    This is a simplified example; I typically namespace everything, so my method might actually be in MyApp::Log::Manager.create(...)

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

Sidebar

Related Questions

I have this code App.Model('users').find(function (err, users) { users.forEach(function(user) { console.log(user.username); }); }); //make
I have a simple Log model, that records the fact of calling controller's action.
In my model I have: class Log < ActiveRecord::Base serialize :data ... def self.recover(table_name,
We've faced strange problem. We have log on service, that authenticates user, adds auth
Can a model depend on another model? Say I have a log model that
I have an action in a model that adds a record to a table.
I have a social network-esque site with a nice User model that seems to
I have a model that is set up as follows: class Log(models.Model): name =
I have a model that is something like this: class ReturnAuthorization(models.Model): custom_id = models.CharField(max_length=40)
I have Teacher, Student, and Parent models that all belong to User. This is

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.