2022-03-27 00:26:25 +01:00
|
|
|
package room
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2022-07-14 00:58:22 +02:00
|
|
|
"github.com/demodesk/neko/pkg/utils"
|
2022-03-27 00:26:25 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (h *RoomHandler) settingsGet(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
settings := h.sessions.Settings()
|
|
|
|
return utils.HttpSuccess(w, settings)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *RoomHandler) settingsSet(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
settings := h.sessions.Settings()
|
|
|
|
|
|
|
|
if err := utils.HttpJsonRequest(w, r, &settings); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
h.sessions.UpdateSettings(settings)
|
|
|
|
|
|
|
|
return utils.HttpSuccess(w)
|
|
|
|
}
|