aboutsummaryrefslogtreecommitdiff
path: root/roomserver/internal/perform_publish.go
diff options
context:
space:
mode:
Diffstat (limited to 'roomserver/internal/perform_publish.go')
-rw-r--r--roomserver/internal/perform_publish.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/roomserver/internal/perform_publish.go b/roomserver/internal/perform_publish.go
new file mode 100644
index 00000000..d7863620
--- /dev/null
+++ b/roomserver/internal/perform_publish.go
@@ -0,0 +1,20 @@
+package internal
+
+import (
+ "context"
+
+ "github.com/matrix-org/dendrite/roomserver/api"
+)
+
+func (r *RoomserverInternalAPI) PerformPublish(
+ ctx context.Context,
+ req *api.PerformPublishRequest,
+ res *api.PerformPublishResponse,
+) {
+ err := r.DB.PublishRoom(ctx, req.RoomID, req.Visibility == "public")
+ if err != nil {
+ res.Error = &api.PerformError{
+ Msg: err.Error(),
+ }
+ }
+}