@intranefr/superbackend 1.7.7 → 1.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.beads/.br_history/issues.20260314_212352_900045509.jsonl +0 -0
- package/.beads/.br_history/issues.20260314_212352_900045509.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_212353_087140743.jsonl +1 -0
- package/.beads/.br_history/issues.20260314_212353_087140743.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_212353_285881504.jsonl +2 -0
- package/.beads/.br_history/issues.20260314_212353_285881504.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_212353_473915419.jsonl +3 -0
- package/.beads/.br_history/issues.20260314_212353_473915419.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_212353_659476307.jsonl +4 -0
- package/.beads/.br_history/issues.20260314_212353_659476307.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_212353_869998925.jsonl +5 -0
- package/.beads/.br_history/issues.20260314_212353_869998925.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_212354_054785029.jsonl +6 -0
- package/.beads/.br_history/issues.20260314_212354_054785029.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213336_175893691.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213336_175893691.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213336_338509797.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213336_338509797.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213336_515443192.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213336_515443192.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213336_676417592.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213336_676417592.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213336_839182422.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213336_839182422.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213337_004349113.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213337_004349113.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213337_179824080.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213337_179824080.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213701_705075332.jsonl +7 -0
- package/.beads/.br_history/issues.20260314_213701_705075332.jsonl.meta.json +1 -0
- package/.beads/.br_history/issues.20260314_213706_783128702.jsonl +8 -0
- package/.beads/.br_history/issues.20260314_213706_783128702.jsonl.meta.json +1 -0
- package/.beads/config.yaml +4 -0
- package/.beads/issues.jsonl +8 -0
- package/.beads/metadata.json +4 -0
- package/.env.example +8 -0
- package/autochangelog/.env.example +36 -0
- package/autochangelog/README.md +412 -0
- package/autochangelog/config/database.js +27 -0
- package/autochangelog/package.json +47 -0
- package/autochangelog/public/landing.html +581 -0
- package/autochangelog/server.js +104 -0
- package/autochangelog/src/app.js +181 -0
- package/autochangelog/src/config/database.js +26 -0
- package/autochangelog/src/controllers/auth.js +488 -0
- package/autochangelog/src/controllers/changelog.js +682 -0
- package/autochangelog/src/controllers/project.js +580 -0
- package/autochangelog/src/controllers/repository.js +780 -0
- package/autochangelog/src/middleware/auth.js +386 -0
- package/autochangelog/src/models/Changelog.js +443 -0
- package/autochangelog/src/models/Project.js +226 -0
- package/autochangelog/src/models/Repository.js +366 -0
- package/autochangelog/src/models/User.js +223 -0
- package/autochangelog/src/routes/auth.routes.js +32 -0
- package/autochangelog/src/routes/changelog.routes.js +42 -0
- package/autochangelog/src/routes/github-auth.routes.js +102 -0
- package/autochangelog/src/routes/project.routes.js +50 -0
- package/autochangelog/src/routes/repository.routes.js +54 -0
- package/autochangelog/src/services/changelog.js +722 -0
- package/autochangelog/src/services/github.js +243 -0
- package/autochangelog/utils/logger.js +77 -0
- package/autochangelog/views/404.ejs +18 -0
- package/autochangelog/views/dashboard.ejs +596 -0
- package/autochangelog/views/index.ejs +231 -0
- package/autochangelog/views/layouts/main.ejs +44 -0
- package/autochangelog/views/login.ejs +104 -0
- package/autochangelog/views/partials/footer.ejs +20 -0
- package/autochangelog/views/partials/navbar.ejs +51 -0
- package/autochangelog/views/register.ejs +109 -0
- package/autochangelog-cli/README.md +266 -0
- package/autochangelog-cli/bin/autochangelog +120 -0
- package/autochangelog-cli/package.json +46 -0
- package/autochangelog-cli/src/cli/commands/auth.js +291 -0
- package/autochangelog-cli/src/cli/commands/changelog.js +619 -0
- package/autochangelog-cli/src/cli/commands/project.js +427 -0
- package/autochangelog-cli/src/cli/commands/repo.js +557 -0
- package/autochangelog-cli/src/cli/commands/stats.js +706 -0
- package/autochangelog-cli/src/cli/utils/config.js +277 -0
- package/autochangelog-cli/src/cli/utils/errors.js +307 -0
- package/autochangelog-cli/src/cli/utils/logger.js +75 -0
- package/autochangelog-cli/src/cli/utils/output.js +357 -0
- package/package.json +8 -3
- package/plugins/supercli/README.md +108 -0
- package/plugins/supercli/plugin.json +123 -0
- package/server.js +1 -1
- package/src/cli/api.js +380 -0
- package/src/cli/direct/agent-utils.js +61 -0
- package/src/cli/direct/cli-utils.js +112 -0
- package/src/cli/direct/data-seeding.js +307 -0
- package/src/cli/direct/db-admin.js +84 -0
- package/src/cli/direct/db-advanced.js +372 -0
- package/src/cli/direct/db-utils.js +558 -0
- package/src/cli/direct/help.js +195 -0
- package/src/cli/direct/migration.js +107 -0
- package/src/cli/direct/rbac-advanced.js +132 -0
- package/src/cli/direct/resources-additional.js +400 -0
- package/src/cli/direct/resources-cms-advanced.js +173 -0
- package/src/cli/direct/resources-cms.js +247 -0
- package/src/cli/direct/resources-core.js +253 -0
- package/src/cli/direct/resources-execution.js +367 -0
- package/src/cli/direct/resources-health.js +152 -0
- package/src/cli/direct/resources-integrations.js +182 -0
- package/src/cli/direct/resources-logs.js +204 -0
- package/src/cli/direct/resources-org-rbac.js +187 -0
- package/src/cli/direct/resources-system.js +236 -0
- package/src/cli/direct.js +556 -0
- package/src/controllers/admin.controller.js +4 -0
- package/src/controllers/auth.controller.js +148 -1
- package/src/controllers/waitingList.controller.js +130 -1
- package/src/models/RbacRole.js +1 -1
- package/src/models/User.js +39 -5
- package/src/routes/auth.routes.js +6 -0
- package/src/routes/waitingList.routes.js +12 -2
- package/src/routes/waitingListAdmin.routes.js +3 -0
- package/src/services/email.service.js +1 -0
- package/src/services/github.service.js +255 -0
- package/src/services/rateLimiter.service.js +29 -1
- package/src/services/waitingListJson.service.js +32 -3
- package/views/admin-waiting-list.ejs +386 -3
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:52.871453326Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.056995062Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.255848710Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.444887750Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.627160137Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.645959040Z","closed_at":"2026-03-14T21:33:36.645292181Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:53.838647143Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.807281328Z","closed_at":"2026-03-14T21:33:36.806530290Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.645959040Z","closed_at":"2026-03-14T21:33:36.645292181Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.969954816Z","closed_at":"2026-03-14T21:33:36.969357867Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.807281328Z","closed_at":"2026-03-14T21:33:36.806530290Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"open","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:23:54.022457915Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.645959040Z","closed_at":"2026-03-14T21:33:36.645292181Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.969954816Z","closed_at":"2026-03-14T21:33:36.969357867Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.807281328Z","closed_at":"2026-03-14T21:33:36.806530290Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:37.149900373Z","closed_at":"2026-03-14T21:33:37.149391162Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.645959040Z","closed_at":"2026-03-14T21:33:36.645292181Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-11v","title":"Add global settings support for GitHub OAuth","description":"Implement global settings system override for GitHub OAuth credentials. Settings keys: github.oauth.clientId, github.oauth.clientSecret, github.oauth.callbackUrl. Global settings take precedence over env vars.","status":"open","priority":1,"issue_type":"enhancement","created_at":"2026-03-14T21:37:01.669476020Z","created_by":"jarancibia","updated_at":"2026-03-14T21:37:01.669476020Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.969954816Z","closed_at":"2026-03-14T21:33:36.969357867Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.807281328Z","closed_at":"2026-03-14T21:33:36.806530290Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:37.149900373Z","closed_at":"2026-03-14T21:33:37.149391162Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
8
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.645959040Z","closed_at":"2026-03-14T21:33:36.645292181Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"target":{"kind":"relative","path":"issues.jsonl"}}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{"id":"saas-backend-10b","title":"Update User Model with GitHub fields","description":"Add GitHub OAuth fields to User model: githubId, githubUsername, githubAccessToken, githubRefreshToken, githubEmail, avatar, emailVerified. Make passwordHash optional when githubId exists. Add indexes for githubId and email.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:52.871453326Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.144240721Z","closed_at":"2026-03-14T21:33:36.143586742Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"saas-backend-11v","title":"Add global settings support for GitHub OAuth","description":"Implement global settings system override for GitHub OAuth credentials. Settings keys: github.oauth.clientId, github.oauth.clientSecret, github.oauth.callbackUrl. Global settings take precedence over env vars.","status":"closed","priority":1,"issue_type":"enhancement","created_at":"2026-03-14T21:37:01.669476020Z","created_by":"jarancibia","updated_at":"2026-03-14T21:37:06.751778335Z","closed_at":"2026-03-14T21:37:06.751342567Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
3
|
+
{"id":"saas-backend-1i7","title":"Write tests for GitHub OAuth flow","description":"Add unit tests for GitHub service and integration tests for OAuth flow in src/controllers/auth.controller.test.js","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.838647143Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.969954816Z","closed_at":"2026-03-14T21:33:36.969357867Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
4
|
+
{"id":"saas-backend-1k6","title":"Update .env.example with GitHub OAuth vars","description":"Add GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, GITHUB_CALLBACK_URL environment variables to .env.example","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-14T21:23:53.627160137Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.807281328Z","closed_at":"2026-03-14T21:33:36.806530290Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"saas-backend-27j","title":"Create GitHub Service","description":"Create src/services/github.service.js with OAuth URL generation, access token exchange, user info retrieval, token refresh logic, and error handling.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.056995062Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.302530192Z","closed_at":"2026-03-14T21:33:36.301854117Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"saas-backend-2id","title":"Update documentation","description":"Update README.md and docs/features/auth-and-jwt.md with GitHub OAuth setup instructions and API documentation","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-14T21:23:54.022457915Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:37.149900373Z","closed_at":"2026-03-14T21:33:37.149391162Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"id":"saas-backend-2zn","title":"Update Auth Controller with GitHub methods","description":"Add githubLogin, githubCallback, and githubRefreshToken methods to src/controllers/auth.controller.js. Handle user creation, account linking, and JWT generation.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.255848710Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.474654483Z","closed_at":"2026-03-14T21:33:36.474044745Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
|
8
|
+
{"id":"saas-backend-lk7","title":"Update Auth Routes","description":"Add GET /auth/github, GET /auth/github/callback, and POST /auth/github/refresh-token routes to src/routes/auth.routes.js","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-14T21:23:53.444887750Z","created_by":"jarancibia","updated_at":"2026-03-14T21:33:36.645959040Z","closed_at":"2026-03-14T21:33:36.645292181Z","close_reason":"done","source_repo":".","compaction_level":0,"original_size":0}
|
package/.env.example
CHANGED
|
@@ -69,3 +69,11 @@ MAX_FILE_SIZE_HARD_CAP=10485760
|
|
|
69
69
|
# Admin Dashboard
|
|
70
70
|
# Maximum number of tabs allowed in the admin dashboard (default: 5)
|
|
71
71
|
ADMIN_MAX_TABS=5
|
|
72
|
+
|
|
73
|
+
# GitHub OAuth (optional - for GitHub authentication)
|
|
74
|
+
# Get these from: https://github.com/settings/developers
|
|
75
|
+
# GITHUB_CLIENT_ID=your-github-client-id
|
|
76
|
+
# GITHUB_CLIENT_SECRET=your-github-client-secret
|
|
77
|
+
# GITHUB_CALLBACK_URL=http://localhost:3000/api/auth/github/callback
|
|
78
|
+
# Frontend URL for OAuth redirect after login
|
|
79
|
+
# FRONTEND_URL=http://localhost:3000
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Server Configuration
|
|
2
|
+
PORT=3001
|
|
3
|
+
NODE_ENV=development
|
|
4
|
+
|
|
5
|
+
# Database
|
|
6
|
+
MONGODB_URI=mongodb://localhost:27017/autochangelog
|
|
7
|
+
|
|
8
|
+
# Authentication
|
|
9
|
+
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
|
10
|
+
JWT_EXPIRES_IN=7d
|
|
11
|
+
|
|
12
|
+
# GitHub OAuth
|
|
13
|
+
GITHUB_CLIENT_ID=your-github-client-id
|
|
14
|
+
GITHUB_CLIENT_SECRET=your-github-client-secret
|
|
15
|
+
GITHUB_CALLBACK_URL=http://localhost:3001/api/auth/github/callback
|
|
16
|
+
|
|
17
|
+
# GitHub API
|
|
18
|
+
GITHUB_API_BASE_URL=https://api.github.com
|
|
19
|
+
|
|
20
|
+
# File Storage
|
|
21
|
+
STORAGE_TYPE=local # or 's3'
|
|
22
|
+
UPLOAD_PATH=./uploads
|
|
23
|
+
S3_BUCKET=your-s3-bucket
|
|
24
|
+
S3_REGION=us-east-1
|
|
25
|
+
S3_ACCESS_KEY_ID=your-s3-access-key
|
|
26
|
+
S3_SECRET_ACCESS_KEY=your-s3-secret-key
|
|
27
|
+
|
|
28
|
+
# Rate Limiting
|
|
29
|
+
RATE_LIMIT_WINDOW_MS=900000
|
|
30
|
+
RATE_LIMIT_MAX_REQUESTS=100
|
|
31
|
+
|
|
32
|
+
# Logging
|
|
33
|
+
LOG_LEVEL=info
|
|
34
|
+
|
|
35
|
+
# Frontend
|
|
36
|
+
FRONTEND_URL=http://localhost:3000
|