7 Revīzijas

Autors SHA1 Ziņojums Datums
  TURNIP\86155 fafdb3d739 merge: integrate rebased feature/test into main pirms 3 nedēļām
  TURNIP\86155 7376bf4cdb test(login): add login test cases pirms 3 nedēļām
  TURNIP\86155 fd65f928d6 docs: add v1.0.0 changelog pirms 3 nedēļām
  TURNIP\86155 aa8177d46d merge: integrate feature/login and resolve config conflict pirms 3 nedēļām
  TURNIP\86155 f0e163e1e9 chore(config): set main mode pirms 3 nedēļām
  TURNIP\86155 9a2215880a feat(login): set login mode configuration pirms 3 nedēļām
  TURNIP\86155 0e86460523 feat(login): add credential check module pirms 3 nedēļām
4 mainītis faili ar 17 papildinājumiem un 0 dzēšanām
Dalītais skats
  1. +6
    -0
      CHANGELOG.md
  2. +1
    -0
      config.txt
  3. +6
    -0
      src/login_module.c
  4. +4
    -0
      tests/login_test_cases.md

+ 6
- 0
CHANGELOG.md Parādīt failu

@@ -0,0 +1,6 @@
# Changelog

## v1.0.0

- Integrated login feature after resolving the configuration conflict.
- Added login test cases after rebasing the test branch on the latest main branch.

+ 1
- 0
config.txt Parādīt failu

@@ -0,0 +1 @@
mode=login-integrated

+ 6
- 0
src/login_module.c Parādīt failu

@@ -0,0 +1,6 @@
/* Login feature source file for Git branch practice. */

int Login_CheckCredentials(const char *user, const char *password)
{
return (user != 0) && (password != 0);
}

+ 4
- 0
tests/login_test_cases.md Parādīt failu

@@ -0,0 +1,4 @@
# Login Test Cases

- Verify valid credentials can enter the login flow.
- Verify null credentials are rejected.

Notiek ielāde…
Atcelt
Saglabāt