implement contact us

This commit is contained in:
2024-10-24 10:15:45 -05:00
parent 13568d00b5
commit b112c726bb
7 changed files with 99 additions and 2 deletions

View File

@@ -131,6 +131,10 @@ func (db *InMemoryDb) GetSvgStringInterface(idxs SvgIdInterface) ([]string, erro
return make([]string, len(idxs)), nil
}
func (db *InMemoryDb) WriteNewContactUsForm(userId UserId, form ContactFormPost) error {
return nil
}
func userIdKey(customerId CustomerId, username UserEmail) string {
key := fmt.Sprintf("%s:%s", customerId, username)
return key