Rename application to mediator
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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))
|
||||
}
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Group Dates — new poll</title>
|
||||
<title>mediator — new poll</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@700;800&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
@@ -11,7 +11,7 @@
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<header class="site">
|
||||
<a class="logo" href="/"><span class="dot"></span>Group Dates</a>
|
||||
<a class="logo" href="/"><span class="dot"></span>mediator</a>
|
||||
<span class="tagline">one calendar for the whole crew</span>
|
||||
</header>
|
||||
|
||||
|
||||
+2
-2
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Group Dates — poll</title>
|
||||
<title>mediator — poll</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@700;800&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
@@ -11,7 +11,7 @@
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<header class="site">
|
||||
<a class="logo" href="/"><span class="dot"></span>Group Dates</a>
|
||||
<a class="logo" href="/"><span class="dot"></span>mediator</a>
|
||||
<span class="tagline">one calendar for the whole crew</span>
|
||||
</header>
|
||||
|
||||
|
||||
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user