beginnings of the Edit Profile page, dialog field and rendering additions

This commit is contained in:
2025-10-10 21:26:01 -06:00
parent 6cdb0ffacf
commit 6eec9f77d9
8 changed files with 290 additions and 9 deletions
-2
View File
@@ -103,8 +103,6 @@ func (st *AmsterdamStore) New(r *http.Request, name string) (*sessions.Session,
* Standard Go error status.
*/
func (st *AmsterdamStore) Save(r *http.Request, w http.ResponseWriter, session *sessions.Session) error {
st.mutex.Lock()
defer st.mutex.Unlock()
cookie := sessions.NewCookie(session.Name(), session.ID, session.Options)
http.SetCookie(w, cookie)
return nil