On Thu, Jan 22, 2009 at 2:28 PM, Adam Akhtar <
[email protected]> wrote:

>
> I want one record in my table to be undeletable by a user. I guess/know
> i can achieve this by writing code in my controller and model to only
> present the user with reocords which can be deleted but im wondering if
> there are any magic rails methods that can do this in a concrete way?
>
> background: Im writing a todolist which has two tables, tasks and
> projects whih have a standard has_many relationship. ie. a project has
> many tasks.
>
> When a user creates a task they specify whihc project they want to add
> it to.
> If a task is just a one off and not aprt of any project the user can
> specify "No project" in teh project dropdown. this in fact is a project
> but just using it to create the illusion! this is the record i dont want
> the user to be able to delete.
> --
> Posted via http://www.ruby-forum.com/.
>
> >
>
Set the model readonly

class MyModel < ActiveRecord::Base
  def initialize(*args)
    super(*args)
    readonly!
  end
end

-- 
Andrew Timberlake
http://ramblingsonrails.com
http://www.linkedin.com/in/andrewtimberlake

"I have never let my schooling interfere with my education" - Mark Twain

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to