Preface: New to Rails, and a novice programmer, be gentle ;)
My question is so broad, I can't seem to hone in on a strategy here, so maybe one of you can help. I can set up user authentication no problem, used Devise - was surprised how easy it was.
My problem is that I need to understand the basic strategy for this: I want to have these Users, who can perform two basic actions. 1) Make a Request. 2) Fulfill A Request.
So, conceptually, a user can be both a "requester" or a "fulfiller of requests," at anytime.
I started to set this up, and halfway through realized I need to slow down and plan, but I got stuck wondering what the best way to do this is. A "fulfill" needs to be linked to a specific "request" from a specific "user."
If someone can just point me in the right direction, even some documentation related to this type of thing, I would be very grateful.
I am familiar with the concept of a model that has_many and belongs_to, and assume that's going to be a part of a solution here, but not sure how to proceed.
Thanks