Add option to subscribe to mailinglist

This commit is contained in:
Gonne 2024-01-03 17:04:38 +01:00
parent 47c546b880
commit d72914da0d
11 changed files with 41 additions and 22 deletions

View file

@ -5,6 +5,10 @@ type Tutor struct {
Id int
Name string
Email string
// Does the tutor want to subscribe to the mailinglist for student assistents?
// This information has to be extracted from the database by hand.
SubscribeToMailinglist bool
}
type TutorRepository interface {