Browse code

Created repository.

DoubleBastionAdmin authored on 26/01/2022 20:32:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,20 @@
1
+<?php
2
+/**
3
+ *  Copyright (C) 2021  Double Bastion LLC
4
+ *
5
+ *  This file is part of Roundpin, which is licensed under the
6
+ *  GNU Affero General Public License Version 3.0. The license terms
7
+ *  are detailed in the "LICENSE.txt" file located in the root directory.
8
+ */
9
+
10
+if (!defined('RESTRICTED')) {
11
+    die();
12
+};
13
+
14
+// Change to true if you want to enable access to "roundpin-setup.php" in the browser, or to false to disable it
15
+$installcheck = false;
16
+
17
+// Change to true to activate the registration tab on the Roundpin login page, or to false to disable it
18
+$signupcheck = false;
19
+
20
+?>