danielswaine / SodburyChallenge

A Rails app to help manage an overnight orienteering competition.
GNU General Public License v3.0
0 stars 1 forks source link

Team Member Info #12

Closed danielswaine closed 4 years ago

danielswaine commented 8 years ago

Be able to enter team members' info for a few different uses:

Certificates and details will be fairly straightforward. You’ll just need a new members table where

class Member < ActiveRecord::Base
  belongs_to: :team, inverse_of: :members
end

and Team will need to has_many: :members, inverse_of: :team, dependent: :destroy.

Using details as sign in credentials might be a bit more tricky...

I thought it would be straightforward.

Sorry when I say signing in/out, that is of the event not the app. So when a team member arrives they are signed in and when they're finished, they sign out. Basically so we know who we have under our radar if that makes sense.

Ah I get it now :stuck_out_tongue: Yeah that would be cool.

danielswaine commented 8 years ago

Certificate and Team Member Name is complete. #21

danielswaine commented 4 years ago

Closing issue as certificate is complete and other two uses (sign in/out and contact details) are not necessary.