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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:04:37+00:00 2026-06-01T08:04:37+00:00

I am having some difficulties passing in parameters to my controller. I created an

  • 0

I am having some difficulties passing in parameters to my controller. I created an Single table inheritance model in my model file.

class Account < ActiveRecord::Base
    belongs_to :user
end
class AdvertiserAccount < Account
end
class PublisherAccount < Account
end

I setted up my routes table with nested resources

resources :advertiser_accounts do
    resources :campaigns
end

I want to be able to pass the current account_id (an account_id from one of my two subclasses of account) to my campaign controller file.
A URL that I would use is http://127.0.0.1:3000/advertiser_accounts/1/campaigns
Since my resource for the url is advertiser_accounts and not accounts, I am not able to get the parameter :account_id.

class CampaignsController < ApplicationController
def index
    @account = current_user.accounts.find_by_id(params[:account_id])
end
end

is there a shortcut to get the current resource or the id? Am I passing in parameters correctly? It seems confusing to call many find_by_id in the controller. Any help is appreciated.

Edit Possible solution:
One of the solutions that I was thinking was setting a type in my routes and then in my controller I would use case statement then get params[:advertiser_account_id] but that seems very tedious and messy. Especially if I will need to copy and paste a list of case statements in each action.

routes.rb

resources :advertiser_accounts, :type => "AdvertiserAccounts" do
    resources :campaigns
end

campaigns_controller.rb

def index
    case params[:type]
     when "AdvertiserAccounts"
            @account = current_user.accounts.find_by_id(params[:advertiser_account_id])
     when "PublisherAccounts"
            @account = current_user.accounts.find_by_id(params[:publisher_account_id])
    end
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-06-01T08:04:38+00:00Added an answer on June 1, 2026 at 8:04 am

    Try this out:

    resources :advertiser_accounts, :as => "account" do
        resources :campaigns
    end
    

    that should give you

    /advertiser_accounts/:account_id/campaigns/:id(.:format)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having some difficulties with passing functions around. I have this code: var options
Im having some difficulties when passing a reference to a vector as an argument.
I have the following setup in my application and I'm having some difficulties passing
I’m having some difficulties trying to dynamically change an image. <a href=#no-reload id=dropMenuButton49 class=dropMenuButton>
I'm having some difficulties while parsing a binary STL file with Python (2.7.1 32-bit
I'm having some difficulties creating a javascript appointment style calendar. While it does render,
I'm having some difficulties with the following problem: I'm making a little game where
I'm having some difficulties getting the TabActivity to work. Here's the implementation of the
I'm having some difficulties with Ajax.BeginForm I have something like this in a view
I am using a AJAX gallery called jCarousel, and I am having some difficulties

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.