aboutsummaryrefslogtreecommitdiff
path: root/cmd/create-account
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/create-account')
-rw-r--r--cmd/create-account/main.go16
1 files changed, 13 insertions, 3 deletions
diff --git a/cmd/create-account/main.go b/cmd/create-account/main.go
index 2719f868..7a566052 100644
--- a/cmd/create-account/main.go
+++ b/cmd/create-account/main.go
@@ -25,8 +25,8 @@ import (
"strings"
"github.com/matrix-org/dendrite/setup"
- "github.com/matrix-org/dendrite/setup/base"
"github.com/matrix-org/dendrite/userapi/api"
+ "github.com/matrix-org/dendrite/userapi/storage"
"github.com/sirupsen/logrus"
"golang.org/x/term"
)
@@ -99,8 +99,18 @@ func main() {
}
}
- b := base.NewBaseDendrite(cfg, "Monolith")
- accountDB := b.CreateAccountsDB()
+ accountDB, err := storage.NewUserAPIDatabase(
+ nil,
+ &cfg.UserAPI.AccountDatabase,
+ cfg.Global.ServerName,
+ cfg.UserAPI.BCryptCost,
+ cfg.UserAPI.OpenIDTokenLifetimeMS,
+ 0, // TODO
+ cfg.Global.ServerNotices.LocalPart,
+ )
+ if err != nil {
+ logrus.WithError(err).Fatalln("Failed to connect to the database")
+ }
accType := api.AccountTypeUser
if *isAdmin {