如何在 WebProtege 4.0 中列出用户?

How to list users in WebProtege 4.0?

我是 运行 WebProtege 4.0.0 的服务器,来自 WebProtege github 页面上描述的 docker 图片。

现在我想访问所有用户的列表,我该怎么做?

到目前为止我发现的最好的事情是尝试共享一个项目,分别输入所有字母并记下出现的名称。

我不确定这是否是最好的方法,但我连接到数据库并以这种方式提取了用户。

docker exec -it webprotege_wpmongo_1 bash     # connect to docker containers shell.
mongo                                         # connect to mongodb shell
use webprotege                                # connect to specific database
db.Users.find().toArray()                     # find and show all users.