You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ruby on Rails: Talk
Hi there,
I'm fairly new to Rails and I'm trying to wrap my head around the
whole REST concept. I'm creating an application that takes in sales
data daily and at the end of the month it will create a batch of
invoices in a Simply Accounting database. I've already worked out the
details on connecting to the external (Simply) db and creating the
invoices. What I don't really get is how to do this with a RESTful
controller.
My thought was to create a MonthEnd resource. The 'new' action would
basically ask for a month, then the 'create' action would actually
build the invoices in the db.
Does this sound ok, or is there a more elegant solution?
Thanks!
jemminger
unread,
Nov 14, 2008, 4:43:50 PM11/14/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ruby on Rails: Talk
sounds ok to me... ultimately it's your app, you can do what you
want. unless you plan on exposing a restful api to the world and
seeking Roy Fielding's blessing, who cares if it isn't purely
following the spec?
Anthony
unread,
Nov 14, 2008, 6:18:43 PM11/14/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ruby on Rails: Talk
Yeah, but I thought the whole point of Rails was that it was
"opinionated". Of course you can do whatever you want however you
want, but there's a "preferred" way of doing things in Rails, right?
That's what I'm trying to learn.