Tim Baas
Tim Baas

Reputation: 6185

Alias methods from association in Rails

I know this is a very simple question, but googling only returns me info about relationship basics and method chaining.. What is the class method called to alias for example user.profile.name to user.name?

Upvotes: 3

Views: 381

Answers (1)

BroiSatse
BroiSatse

Reputation: 44685

You want delegate:

delegate :name, :to => :profile

Upvotes: 8

Related Questions