1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 15:53:28 +00:00

ADD: dtable-share-link-ui & GET DELETE apis about dtable-share-link (#4117)

* ADD: dtable-share-link-ui
ADD: GET DELETE apis about dtable-share-link

* ADD: dtable_from_link_view & dtable_file_link_view_react.html

* MOD: some error_msgs and rename dtable_share_link_view and move dtable_share_link_view's url to dtable's urls

* FIX: dtableShareLinks' is_expired
This commit is contained in:
Alex Happy
2019-09-27 15:56:31 +08:00
committed by Daniel Pan
parent 702652d63e
commit c34969ce4b
13 changed files with 620 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
class DTableShareLink {
constructor(object) {
this.workspaceID = object.workspace_id;
this.permissions = object.permission;
this.username = object.username;
this.is_expired = object.is_expired;
this.expire_date = object.expire_date;
this.token = object.token;
this.link = object.link;
this.ctime = object.ctime;
}
}
export default DTableShareLink;