1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 01:41:39 +00:00

star folder (#2955)

This commit is contained in:
lian
2019-02-18 20:26:55 +08:00
committed by Daniel Pan
parent 6a7a47e6cd
commit 5fd5b000e1
11 changed files with 391 additions and 42 deletions

View File

@@ -58,15 +58,15 @@ class EditorUtilities {
);
}
unStarFile () {
unStarItem () {
return (
seafileAPI.unStarFile(repoID, this.filePath)
seafileAPI.unStarItem(this.repoID, this.filePath)
);
}
starFile() {
starItem() {
return (
seafileAPI.starFile(this.repoID, this.filePath)
seafileAPI.starItem(this.repoID, this.filePath)
);
}