Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
言程序plus
uni-starter
提交
827afca9
U
uni-starter
项目概览
言程序plus
/
uni-starter
与 Fork 源项目一致
Fork自
DCloud / uni-starter
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
827afca9
编写于
5月 14, 2021
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增uni-id-roles.schema
上级
f1095194
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
104 addition
and
14 deletion
+104
-14
uniCloud-aliyun/database/opendb-news-favorite.schema.json
uniCloud-aliyun/database/opendb-news-favorite.schema.json
+6
-6
uniCloud-aliyun/database/uni-id-permissions.schema.json
uniCloud-aliyun/database/uni-id-permissions.schema.json
+46
-0
uniCloud-aliyun/database/uni-id-roles.schema.json
uniCloud-aliyun/database/uni-id-roles.schema.json
+46
-0
uniCloud-aliyun/database/uni-id-scores.schema.json
uniCloud-aliyun/database/uni-id-scores.schema.json
+1
-1
uni_modules/uni-feedback/uniCloud/database/opendb-feedback.schema.json
...ni-feedback/uniCloud/database/opendb-feedback.schema.json
+5
-7
未找到文件。
uniCloud-aliyun/database/opendb-news-favorite.schema.json
浏览文件 @
827afca9
...
...
@@ -10,15 +10,15 @@
"properties"
:
{
"_id"
:
{
"description"
:
"ID,系统自动生成"
},
},
"article_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"文章id,参考opendb-news-articles表"
,
"foreignKey"
:
"opendb-news-articles._id"
},
"article_title"
:
{
"bsonType"
:
"string"
,
"description"
:
"文章标题"
},
"article_title"
:
{
"bsonType"
:
"string"
,
"description"
:
"文章标题"
},
"user_id"
:
{
"bsonType"
:
"string"
,
...
...
@@ -37,7 +37,7 @@
},
"update_date"
:
{
"bsonType"
:
"timestamp"
,
"description"
:
"更新/修改时间"
,
"description"
:
"更新
\
/
修改时间"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
...
...
uniCloud-aliyun/database/uni-id-permissions.schema.json
0 → 100644
浏览文件 @
827afca9
{
"bsonType"
:
"object"
,
"required"
:
[
"permission_id"
,
"permission_name"
],
"properties"
:
{
"_id"
:
{
"description"
:
"存储文档 ID,系统自动生成"
},
"permission_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"权限唯一标识,不可修改,不允许重复"
,
"label"
:
"权限标识"
,
"trim"
:
"both"
,
"title"
:
"权限ID"
,
"component"
:
{
"name"
:
"input"
}
},
"permission_name"
:
{
"bsonType"
:
"string"
,
"description"
:
"权限名称"
,
"label"
:
"权限名称"
,
"title"
:
"权限名称"
,
"trim"
:
"both"
,
"component"
:
{
"name"
:
"input"
}
},
"comment"
:
{
"bsonType"
:
"string"
,
"description"
:
"备注"
,
"label"
:
"备注"
,
"title"
:
"备注"
,
"trim"
:
"both"
,
"component"
:
{
"name"
:
"textarea"
}
},
"create_date"
:
{
"bsonType"
:
"timestamp"
,
"description"
:
"创建时间"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
}
}
}
uniCloud-aliyun/database/uni-id-roles.schema.json
0 → 100644
浏览文件 @
827afca9
{
"bsonType"
:
"object"
,
"required"
:
[
"role_id"
],
"permission"
:
{
"read"
:
false
,
"create"
:
false
,
"update"
:
false
,
"delete"
:
false
},
"properties"
:
{
"_id"
:
{
"description"
:
"存储文档 ID,系统自动生成"
},
"role_id"
:
{
"title"
:
"唯一ID"
,
"bsonType"
:
"string"
,
"description"
:
"角色唯一标识,不可修改,不允许重复"
,
"trim"
:
"both"
},
"role_name"
:
{
"title"
:
"名称"
,
"bsonType"
:
"string"
,
"description"
:
"角色名称"
,
"trim"
:
"both"
},
"permission"
:
{
"title"
:
"权限"
,
"bsonType"
:
"array"
,
"foreignKey"
:
"uni-id-permissions.permission_id"
,
"description"
:
"角色拥有的权限列表"
},
"comment"
:
{
"title"
:
"备注"
,
"bsonType"
:
"string"
,
"description"
:
"备注"
,
"trim"
:
"both"
},
"create_date"
:
{
"bsonType"
:
"timestamp"
,
"description"
:
"创建时间"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
}
}
}
uniCloud-aliyun/database/uni-id-scores.schema.json
浏览文件 @
827afca9
...
...
@@ -41,4 +41,4 @@
}
}
}
}
}
uni_modules/uni-feedback/uniCloud/database/opendb-feedback.schema.json
浏览文件 @
827afca9
{
"bsonType"
:
"object"
,
"required"
:
[
"content"
],
"required"
:
[
"content"
],
"permission"
:
{
"create"
:
"auth.uid != null"
,
"read"
:
true
,
...
...
@@ -15,7 +13,7 @@
},
"user_id"
:
{
"bsonType"
:
"string"
,
"description"
:
"留言反馈用户ID/回复留言用户ID,参考uni-id-users表"
,
"description"
:
"留言反馈用户ID
\
/
回复留言用户ID,参考uni-id-users表"
,
"foreignKey"
:
"uni-id-users._id"
,
"forceDefaultValue"
:
{
"$env"
:
"uid"
...
...
@@ -23,14 +21,14 @@
},
"create_date"
:
{
"bsonType"
:
"timestamp"
,
"title"
:
"留言时间/回复留言时间"
,
"title"
:
"留言时间
\
/
回复留言时间"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
},
"content"
:
{
"bsonType"
:
"string"
,
"title"
:
"留言内容/回复内容"
,
"title"
:
"留言内容
\
/
回复内容"
,
"componentForEdit"
:
{
"name"
:
"textarea"
},
...
...
@@ -71,4 +69,4 @@
"defaultValue"
:
0
}
}
}
\ No newline at end of file
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录