summary refs log tree commit diff
path: root/events.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-09 18:57:29 -0400
committerJune McEnroe <june@causal.agency>2020-07-09 18:57:29 -0400
commit7b521cf75376ccfd38c2ff077c854b408fe616ff (patch)
tree4e510cf548fc02e9a7cbbf6bc209259d5ec06428 /events.c
parentImplement basic contexts listing (diff)
downloadscooper-7b521cf75376ccfd38c2ff077c854b408fe616ff.tar.gz
scooper-7b521cf75376ccfd38c2ff077c854b408fe616ff.zip
Split code and add breadcrumb nav
Diffstat (limited to 'events.c')
-rw-r--r--events.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/events.c b/events.c
new file mode 100644
index 0000000..c891bff
--- /dev/null
+++ b/events.c
@@ -0,0 +1,26 @@
+/* Copyright (C) 2020  C. McEnroe <june@causal.agency>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <err.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sysexits.h>
+
+#include "server.h"
+
+enum kcgi_err pageEvents(struct kreq *req) {
+	return httpFail(req, KHTTP_501);
+}