From 9d32aae45933d03b4f2735c3a355267f001674fd Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sat, 21 Jul 2018 22:21:24 +0100 Subject: [PATCH] settings class --- .../groovy/com/muwire/core/MuWireSettings.groovy | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 core/src/main/groovy/com/muwire/core/MuWireSettings.groovy diff --git a/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy b/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy new file mode 100644 index 00000000..cfb883a4 --- /dev/null +++ b/core/src/main/groovy/com/muwire/core/MuWireSettings.groovy @@ -0,0 +1,14 @@ +package com.muwire.core + +class MuWireSettings { + + boolean isLeaf() { + // TODO: implement + false + } + + boolean allowUntrusted() { + // TODO: implement + true + } +}