mirror of
https://github.com/barkstone2/vault-to-blog.git
synced 2026-07-22 05:21:19 +00:00
feat: Extend settings interface for comment layout
This commit is contained in:
parent
165d1838f8
commit
64bda4f0d0
1 changed files with 4 additions and 0 deletions
4
main.ts
4
main.ts
|
|
@ -13,6 +13,8 @@ export interface VaultToBlogSettings {
|
|||
isActivated: boolean;
|
||||
version: string;
|
||||
isEnableComments: boolean;
|
||||
repo: string;
|
||||
theme: string;
|
||||
}
|
||||
|
||||
const DEFAULT_SETTINGS: VaultToBlogSettings = {
|
||||
|
|
@ -21,6 +23,8 @@ const DEFAULT_SETTINGS: VaultToBlogSettings = {
|
|||
isActivated: false,
|
||||
version: '0.0.1',
|
||||
isEnableComments: false,
|
||||
repo: '',
|
||||
theme: ''
|
||||
};
|
||||
|
||||
export default class VaultToBlog extends Plugin {
|
||||
|
|
|
|||
Loading…
Reference in a new issue