Batch invoice creator

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!

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?

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.