{"id":34645342,"url":"https://github.com/viiku/task-planner","last_synced_at":"2026-05-01T20:31:23.996Z","repository":{"id":326265078,"uuid":"1052864151","full_name":"viiku/task-planner","owner":"viiku","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-21T06:48:35.000Z","size":227,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-21T22:43:58.947Z","etag":null,"topics":["grafana","oauth2","otel-collector","promethues","spring-boot","spring-security-jwt"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/viiku.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-08T16:50:41.000Z","updated_at":"2026-03-21T06:48:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/viiku/task-planner","commit_stats":null,"previous_names":["viiku/task-planner"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/viiku/task-planner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viiku%2Ftask-planner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viiku%2Ftask-planner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viiku%2Ftask-planner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viiku%2Ftask-planner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/viiku","download_url":"https://codeload.github.com/viiku/task-planner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viiku%2Ftask-planner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32512662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["grafana","oauth2","otel-collector","promethues","spring-boot","spring-security-jwt"],"created_at":"2025-12-24T17:40:53.678Z","updated_at":"2026-05-01T20:31:23.984Z","avatar_url":"https://github.com/viiku.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Planner\n\nThis project is a task planner application.\n\n## API Endpoints\n\nBelow is a summary of the API endpoints (extracted from `postman_collection/postman_collection.json`). For each endpoint you'll find the HTTP method, path, a short description, and example headers/body when applicable.\n\n| Service | Name | Method | Path | Description | Example Headers / Body |\n|---|---:|---:|---|---|---|\n| taskservice | createTask | POST | /api/v1/tasks | Create a new task. Request body: task fields (taskId, name, description, taskType, taskDifficulty, taskStatus, url, notes). | Header: Authorization: Bearer \u003ctoken\u003e\\nBody (JSON): {\"taskId\":\"string\",\"name\":\"string\",...} |\n| taskservice | getTasksByTypeAndStatus | GET | /api/v1/tasks?type={type}\u0026status={status} | Get tasks filtered by type and status. | Header: Authorization: Bearer \u003ctoken\u003e |\n| taskservice | getListOfTaskByType | GET | /api/v1/tasks/type?type={type} | Get list of tasks for a given type. | Header: Authorization: Bearer \u003ctoken\u003e |\n| taskservice | deleteTaskById | DELETE | /api/v1/tasks/{taskId} | Delete a task by id. | Header: Authorization: Bearer \u003ctoken\u003e |\n| taskservice | updateTaskByTaskId | POST | /api/v1/tasks/{taskId} | Update a task by id (POST used in collection). | Header: Authorization: Bearer \u003ctoken\u003e |\n| taskservice | getTaskById | GET | /api/v1/tasks | Get tasks (collection had GET /api/v1/tasks) | Header: Authorization: Bearer \u003ctoken\u003e |\n| authservice | signup | POST | /api/auth/signup | Register a new user. Request body: username, email, password, firstName, lastName, phoneNumber. | Header: Content-Type: application/json\\nBody (JSON): {\"username\":\"aba\",\"email\":\"aba@gmail.com\",...} |\n| authservice | signin | POST | /api/auth/signin | Sign in and receive tokens. Body: username, password. | Body (JSON): {\"username\":\"abz\",\"password\":\"abz\"} |\n| authservice | refresh-token | POST | /api/auth/refreshtoken | Refresh access token using refresh token. | Body (JSON): {\"refreshToken\":\"\u003ctoken\u003e\"} |\n| authservice | logout | POST | /api/auth/logout | Logout current device/session (requires Authorization header). | Header: Authorization: Bearer \u003ctoken\u003e |\n| authservice | logoutAllDevices | POST | /api/auth/logout-all-devices | Logout from all devices for the current user. | Header: Authorization: Bearer \u003ctoken\u003e |\n\nNotes:\n- All endpoints listed under `taskservice` in the collection require an Authorization header (Bearer token) in the examples. Replace with a valid JWT when calling the API.\n- Base URL used in the collection: http://localhost:8080\n- Paths with path parameters are shown using {param} notation.\n\n## Run this application\n```bash\ngit clone git@github.com:viiku/task-planner.git\ndocker compose up\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviiku%2Ftask-planner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fviiku%2Ftask-planner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviiku%2Ftask-planner/lists"}