mirror of
https://github.com/Ellpeck/ObsidianJustSharePlease.git
synced 2024-11-23 02:48:34 +01:00
24 lines
523 B
TypeScript
24 lines
523 B
TypeScript
export const defaultSettings: JSPSettings = {
|
|
url: "https://jsp.ellpeck.de",
|
|
shared: [],
|
|
stripFrontmatter: true
|
|
};
|
|
|
|
// TODO add a setting for auto-refreshing uploads when saving
|
|
// TODO add a setting for auto-removing JSP shares when the original file is deleted
|
|
export interface JSPSettings {
|
|
|
|
url: string;
|
|
shared: SharedItem[];
|
|
stripFrontmatter: boolean;
|
|
|
|
}
|
|
|
|
export interface SharedItem {
|
|
|
|
id: string;
|
|
password: string;
|
|
// TODO auto-update path when file is moved
|
|
path: string;
|
|
|
|
}
|