stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

commit cf208b0a72eaab809a17dbe80544cf4d0239348f
parent a07bfb9027522507483673694443cb5a99b9af4a
Author: Nikolas Mazur <nikolas@pop-os.localdomain>
Date:   Thu, 26 Jan 2023 15:25:49 -0700

Add is_active to user document

Diffstat:
Mseeds.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/seeds.py b/seeds.py @@ -15,6 +15,7 @@ user1 = { 'email': 'kolemazur@gmail.com', 'pay_period': 'salaried', 'pay_value': 43000, + 'is_active':False } user2 = { @@ -26,6 +27,7 @@ user2 = { 'email': 'brennen.mazur@gmail.com', 'pay_period': 'salaried', 'pay_value': 43000, + 'is_active':True } collection.insert_many([user1, user2])