mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 22:29:40 +02:00
✨ feat(contacts): add import/export with Google Contacts integration
- Add vCard/CSV file import with duplicate detection and merge options - Add Google Contacts OAuth2 integration for importing from Google - Add vCard/CSV export with format selection and filtering options - Add connected_accounts table for OAuth token storage - Add FileUploader, ImportPreview, GoogleImport components - Add ExportModal with format selection (vCard/CSV) - Add i18n translations for import/export (DE/EN)
This commit is contained in:
parent
32eef4005d
commit
79b629b820
98 changed files with 5302 additions and 6 deletions
|
|
@ -10,8 +10,12 @@ CREATE DATABASE voxel_lava;
|
|||
-- Create storage database (cloud drive)
|
||||
CREATE DATABASE storage;
|
||||
|
||||
-- Create todo database
|
||||
CREATE DATABASE todo;
|
||||
|
||||
-- Grant all privileges to the default user
|
||||
GRANT ALL PRIVILEGES ON DATABASE chat TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE voxel_lava TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE manacore TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE storage TO manacore;
|
||||
GRANT ALL PRIVILEGES ON DATABASE todo TO manacore;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue