It's probably a bad idea to flat-out override link_to, since there
will be occasions that you don't want to check authorisation when
creating a link. It's worth noting that each call to
link_if_authorized creates a call to authorized?(), which in turn asks
the DB about the current users permissions - having EVERY link in your
site do this is going to impact performance at some point [1].

Instead, I'd suggest that you use link_if_authorized only when it is
truly appropriate to do so.

- james

[1] future versions might address this in some way, although I
wouldn't rely on that happening.


On 5/21/06, Joshua Muheim <[EMAIL PROTECTED]> wrote:
> Hi all
>
> I'm working with the UserEngine and now I'm wondering, if I can use
> link_if_authorized() everywhere I'm using link_to() at the moment...?
>
> If so, I could only overwrite the link_to method like the following,
> right?
>
> Something::SomethingElse
>   link_to(controller, action)
>     link_if_authorized(controller, action)
>   end
> end
>
> Thanks for help! :-)
> Joshua
>
> --
> Posted via http://www.ruby-forum.com/.
> _______________________________________________
> engine-users mailing list
> engine-users@lists.rails-engines.org
> http://lists.rails-engines.org/listinfo.cgi/engine-users-rails-engines.org
>


-- 
* J *
  ~
_______________________________________________
engine-users mailing list
engine-users@lists.rails-engines.org
http://lists.rails-engines.org/listinfo.cgi/engine-users-rails-engines.org

Reply via email to