diff --git a/README.md b/README.md index 8134508..029d14f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Group Dates +# mediator A tiny self-hosted web app for scheduling get-togethers with your friend group. You circle dates on a calendar, optionally add a time per day, and share one diff --git a/main.go b/main.go index 0ecc570..25efc4d 100644 --- a/main.go +++ b/main.go @@ -408,6 +408,6 @@ func main() { mux.HandleFunc("POST /api/polls/{id}/close", sv.withAdmin(sv.closePoll)) mux.HandleFunc("DELETE /api/polls/{id}", sv.withAdmin(sv.deletePoll)) - log.Printf("Group Dates running on http://localhost%s (data in %s)", *addr, *dataDir) + log.Printf("mediator running on http://localhost%s (data in %s)", *addr, *dataDir) log.Fatal(http.ListenAndServe(*addr, mux)) } diff --git a/static/index.html b/static/index.html index d97955e..96e012c 100644 --- a/static/index.html +++ b/static/index.html @@ -3,7 +3,7 @@ - Group Dates — new poll + mediator — new poll @@ -11,7 +11,7 @@
- + one calendar for the whole crew
diff --git a/static/poll.html b/static/poll.html index ea818ae..bdc0e4f 100644 --- a/static/poll.html +++ b/static/poll.html @@ -3,7 +3,7 @@ - Group Dates — poll + mediator — poll @@ -11,7 +11,7 @@
- + one calendar for the whole crew
diff --git a/static/poll.js b/static/poll.js index c348026..7f46135 100644 --- a/static/poll.js +++ b/static/poll.js @@ -33,7 +33,7 @@ function renderAll() { $("poll-desc").textContent = poll.description; $("poll-desc").hidden = false; } - document.title = "Group Dates — " + poll.title; + document.title = "mediator — " + poll.title; const canVote = !poll.closed; $("vote-card").hidden = !canVote;