7 Revize

Autor SHA1 Zpráva Datum
  TURNIP\86155 fafdb3d739 merge: integrate rebased feature/test into main před 3 týdny
  TURNIP\86155 7376bf4cdb test(login): add login test cases před 3 týdny
  TURNIP\86155 fd65f928d6 docs: add v1.0.0 changelog před 3 týdny
  TURNIP\86155 aa8177d46d merge: integrate feature/login and resolve config conflict před 3 týdny
  TURNIP\86155 f0e163e1e9 chore(config): set main mode před 3 týdny
  TURNIP\86155 9a2215880a feat(login): set login mode configuration před 3 týdny
  TURNIP\86155 0e86460523 feat(login): add credential check module před 3 týdny
4 změnil soubory, kde provedl 17 přidání a 0 odebrání
  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 Zobrazit soubor

@@ -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 Zobrazit soubor

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

+ 6
- 0
src/login_module.c Zobrazit soubor

@@ -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 Zobrazit soubor

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

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

Načítá se…
Zrušit
Uložit