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

  • Home
  • SEARCH
  • 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 6609173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:41:15+00:00 2026-05-25T19:41:15+00:00

In my app I’m trying to implement trash for some objects, i.e. there will

  • 0

In my app I’m trying to implement trash for some objects, i.e. there will be column “trashed” and it’ll set to date, when the object was trashed. Trash also has an index page, where users can restore objects – set “trashed” to nil.

I found examples of models with method trash!, that set trashed to date and it was implemented with Concerns. But I don’t really understand how to implement controllers with action to_trash? Is there any way to use Concerns with controllers too or every controller should have it’s own action and route for calling it?

Now I implemented it with controller Trash, that have action move_to_trash and every controller use this action, but I have to add get params trashable_id and trashable_type to do this. Is it a good way to do things?

  • 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-25T19:41:16+00:00Added an answer on May 25, 2026 at 7:41 pm

    I think the simplest implementation could be to add to your routes.rb file the following:

    match ':controller/:id/trash', :action => :trash
    

    This will allow you to use the action trash on every controller. Have a look at the Routing Rails Guide for more examples.

    A simple implementation is the following (taking the model Report as example). I don’t use Concern here:

    class ReportsController < ApplicationController
      def trash
        @report = Report.find(params[:id])
        <Do the trashing of report here, you know that already.>
        # Decide what to do after having called #trash
        respond_to do |format|
          format.html { redirect_to(reports_url) }
        end
      end
    end
    

    If you have only some controllers that should allow the action, it is perhaps easier to add special routes rules for each controller, instead of adding it to every one. And if you want to go a step beyond, you may implement the trash action in a mixin, and mix it in the controller you want to have it in (and no, I don’t will implement that, too).

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

Sidebar

Related Questions

My app keeps track of the state of about 1000 objects. Those objects are
My app has a DataGridView object and a List of type MousePos. MousePos is
App will run on Heroku Dependencies include paperclip haml compass devise aws-s3 Reasons for
App Store We have been developing an app for quite some time now for
App Engine provides a way to set the current namespace . Is this a
The app I am trying to make needs a few info in the beggining,
My app is set up so that if a user signs in with Oauth
My app allow users to choose imgs and associate them to some text. When
App Engine only allows you to use these formats for XMPP addresses: app-id@appspot.com anything@app-id.appspotchat.com
My app has many controls on its surface, and more are added dynamically at

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.