Hi, I just faced this problem today. I have a site which will have a USER model and a SUBMISSION model. Apart from the cosmetics parts, each user will be able to have multiple submissions, while each submission could have or not a username. Basically, registration to make a submission will be optional. My question is will this work if someone tries to submit and it is not registered? -- Posted via http://www.ruby-forum.com/.
Bogdan - On 7-May-09, at 4:47 PM, Bogdan Pop wrote:> > Hi, > > I just faced this problem today. I have a site which will have a USER > model and a SUBMISSION model. Apart from the cosmetics parts, each > user > will be able to have multiple submissions, while each submission could > have or not a username. > > Basically, registration to make a submission will be optional. My > question is will this work if someone tries to submit and it is not > registered?validation is under your control - just don''t enforce (validates_presence_of) for :user relation J
Jodi Showers wrote:> Bogdan - > > On 7-May-09, at 4:47 PM, Bogdan Pop wrote: > >> question is will this work if someone tries to submit and it is not >> registered? > > validation is under your control - just don''t enforce > (validates_presence_of) for :user relation > > JAnother small bump. When I create a new object. For example a SUBMISSION, how can I select from a drop down list the USER it belongs to? -- Posted via http://www.ruby-forum.com/.