preparing new poll module

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-02-12 08:48:11 +01:00
parent 6e7bb08738
commit 4343ff7d7a
4 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
package de.srsoftware.umbrella.core.api;
public interface PollService {
}

6
poll/build.gradle.kts Normal file
View File

@@ -0,0 +1,6 @@
description = "Umbrella : Polls"
dependencies{
implementation(project(":core"))
}

View File

@@ -0,0 +1,7 @@
package de.srsoftware.umbrella.poll;
import de.srsoftware.umbrella.core.BaseHandler;
import de.srsoftware.umbrella.core.api.PollService;
public class PollModule extends BaseHandler implements PollService {
}

View File

@@ -8,10 +8,12 @@ include("contact")
include("core")
include("documents")
include("files")
include("journal")
include("legacy")
include("messages")
include("markdown")
include("notes")
include("poll")
include("project")
include("stock")
include("tags")
@@ -22,4 +24,3 @@ include("user")
include("web")
include("wiki")
include("journal")