From d73657ac0e57f559691a097764a647506d772e24 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Sun, 22 Oct 2023 20:01:25 +0300 Subject: [PATCH 1/4] docs: add Backlog Entry issue template --- .gitea/issue_templates/backlog_entry.md | 35 +++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitea/issue_templates/backlog_entry.md diff --git a/.gitea/issue_templates/backlog_entry.md b/.gitea/issue_templates/backlog_entry.md new file mode 100644 index 0000000..e2b68b4 --- /dev/null +++ b/.gitea/issue_templates/backlog_entry.md @@ -0,0 +1,35 @@ +--- +name: Backlog Entry +about: Create a backlog entry +title: "Implement User Authentication (Delete this entry. Use Issue title)" +--- + +**Category:** Development **(Delete this entry. Use Labels)** + +**Priority:** High **(Delete this entry. Use Labels)** + +**Description:** +Develop user authentication system to secure the application and allow registered users to log in and access their accounts. + +**Acceptance Criteria:** +- Users can register with an email and password. +- Passwords are securely hashed and stored. +- Registered users can log in with their credentials. +- Successful login redirects users to their dashboard. +- Failed login attempts display an error message. +- Password reset functionality is available. +- User authentication is integrated with the database. + +**Estimation:** 5 story points + +**Due Date:** 2023-12-15 **(Delete this entry. Set in sidebar after creating the issue)** + +**Dependencies:** None **(Delete this entry. Set in sidebar after creating the issue)** + +**References:** +- User Authentication User Story (link) +- Authentication API Documentation (link) + +**Status:** Not Started (User) **(Delete this entry. Kanban board in Projects tab of this repository)** + +**Notes:** This is a critical feature for user access control. It's a foundational component that must be in place before moving on to other user-related features. From 791add98f4cef634f14739097765d0cc891fe10e Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Sun, 22 Oct 2023 20:04:26 +0300 Subject: [PATCH 2/4] fix: change name of issue template folder --- .gitea/{issue_templates => issue_template}/backlog_entry.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .gitea/{issue_templates => issue_template}/backlog_entry.md (100%) diff --git a/.gitea/issue_templates/backlog_entry.md b/.gitea/issue_template/backlog_entry.md similarity index 100% rename from .gitea/issue_templates/backlog_entry.md rename to .gitea/issue_template/backlog_entry.md From c83fef9026fd30e738850d56e480c0f4c1f29432 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Sun, 22 Oct 2023 20:16:34 +0300 Subject: [PATCH 3/4] docs: add pull request template --- .gitea/pull_request_template.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/pull_request_template.md diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md new file mode 100644 index 0000000..eecd5e3 --- /dev/null +++ b/.gitea/pull_request_template.md @@ -0,0 +1,11 @@ +**Description** + +A clear and concise description of the changes in this pull request. + +**Related Issue** + +Closes #IssueNumber + +**Screenshots (if applicable)** + +Add screenshots or images to help explain your changes, if relevant. From 25ddc21b7cea3ad9191b3f66bd88453930f5a449 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Sun, 22 Oct 2023 20:19:29 +0300 Subject: [PATCH 4/4] fix: remove unnecessary spacing --- .gitea/pull_request_template.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md index eecd5e3..aec0315 100644 --- a/.gitea/pull_request_template.md +++ b/.gitea/pull_request_template.md @@ -1,11 +1,8 @@ **Description** - A clear and concise description of the changes in this pull request. **Related Issue** - Closes #IssueNumber **Screenshots (if applicable)** - Add screenshots or images to help explain your changes, if relevant.