diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-03-28 15:11:07 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2017-04-03 10:20:49 +0200 |
commit | 0d5147bd492e11dcb1ed264bcc27d21dc026c6f1 (patch) | |
tree | 987445dafba0171b933727e6b4060ba7ad4845e6 /core | |
parent | d0eefd17d3c47de8d13d41e57a2a6966af94428f (diff) | |
download | nextcloud-server-0d5147bd492e11dcb1ed264bcc27d21dc026c6f1.tar.gz nextcloud-server-0d5147bd492e11dcb1ed264bcc27d21dc026c6f1.zip |
add new password column to the share table in order to set passwords for share by mails
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/js/shareitemmodel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js index ae4c07e3f4e..87d0556b996 100644 --- a/core/js/shareitemmodel.js +++ b/core/js/shareitemmodel.js @@ -757,7 +757,7 @@ isLinkShare: true, id: share.id, token: share.token, - password: share.share_with, + password: share.password, link: link, permissions: share.permissions, // currently expiration is only effective for link shares. |