feat: scaffold v0.3.0 mailcow integration and plugin hook structure

This commit is contained in:
Thea Kindinger
2026-04-08 20:00:01 -04:00
parent 931c03ba93
commit cdb8e31c54
9 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1 @@
# owncloud-attach API placeholders\n\nExpected endpoints:\n- GET /plugins/owncloud-attach/api/files\n- POST /plugins/owncloud-attach/api/attach\n- GET /plugins/owncloud-attach/api/health\n\nImplement the runtime-side token exchange and ownCloud file listing here.\n

View File

@@ -0,0 +1 @@
<!doctype html>\n<html lang="en">\n <head>\n <meta charset="utf-8" />\n <meta name="viewport" content="width=device-width, initial-scale=1" />\n <title>owncloud-attach</title>\n <style>\n body { font-family: system-ui, sans-serif; margin: 24px; background: #0b0b0f; color: #f7f7f8; }\n .card { max-width: 720px; margin: 0 auto; padding: 24px; border-radius: 16px; background: #15151d; }\n button { padding: 10px 14px; border-radius: 10px; border: 0; cursor: pointer; }\n </style>\n </head>\n <body>\n <div class="card">\n <h1>owncloud-attach</h1>\n <p>Placeholder UI for the ownCloud picker modal.</p>\n <button id="connect-owncloud">Connect ownCloud</button>\n </div>\n </body>\n</html>\n