mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 07:37:18 +01:00
Add api to upload attachments
This commit is contained in:
@@ -36,6 +36,9 @@ class SettingsService {
|
||||
const COLOR_FOR_NEW_NOTES_KEY = 'default_color';
|
||||
const DEFAULT_COLOR_FOR_NEW_NOTES = '#F7EB96';
|
||||
|
||||
const ATTACHMENTS_FOLDER_KEY = 'attachments_folder';
|
||||
const DEFAULT_ATTACHMENTS_FOLDER = 'Quicknotes';
|
||||
|
||||
/** @var IConfig Config */
|
||||
private $config;
|
||||
|
||||
@@ -62,4 +65,12 @@ class SettingsService {
|
||||
$this->config->setUserValue($this->userId, Application::APP_ID, self::COLOR_FOR_NEW_NOTES_KEY, $color);
|
||||
}
|
||||
|
||||
public function getAttachmentsFolder(): string {
|
||||
return $this->config->getUserValue($this->userId, Application::APP_ID, self::ATTACHMENTS_FOLDER_KEY, self::DEFAULT_ATTACHMENTS_FOLDER);
|
||||
}
|
||||
|
||||
public function setAttachmentsFolder(string $folder) {
|
||||
$this->config->setUserValue($this->userId, Application::APP_ID, self::ATTACHMENTS_FOLDER_KEY, $folder);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user