mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-21 02:42:26 +00:00
* 01 add static media files * 02 edit wiki page * 03 remove useless icons and support edit name and icon * 04 support wiki nav * delete useless codes * optimize feature edit wiki * 05 add wiki-api and save config * 06 change some UI * delete useless codes * delete useless codes * fix edit wiki url * change js path * change icon size * fix * fix fn name and do not show tree view * fix edit url * save config to index.json * fix new file name check * hide icon and library name * remove useless svgs * remove useless svgs --------- Co-authored-by: ‘JoinTyang’ <yangtong1009@163.com> Co-authored-by: JoinTyang <41655440+JoinTyang@users.noreply.github.com>
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
export default class Page {
|
|
constructor(object) {
|
|
this.id = object.id;
|
|
this.name = object.name;
|
|
this.path = object.path;
|
|
this.icon = object.icon;
|
|
}
|
|
}
|