forked from uselotus/lotus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Login + Register return more user information (uselotus#311)
Co-authored-by: mnida <[email protected]> Co-authored-by: Hardik-uselotus <[email protected]> Co-authored-by: Hardik Agarwal <[email protected]> Co-authored-by: mnida <[email protected]>
- Loading branch information
1 parent
00b8f03
commit 2fd4fad
Showing
6 changed files
with
280 additions
and
102 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
backend/metering_billing/migrations/0078_historicalorganization_organization_id_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.0.5 on 2022-11-17 23:54 | ||
|
||
from django.db import migrations, models | ||
import metering_billing.utils.utils | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("metering_billing", "0077_remove_plancomponent_cost_per_batch_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="historicalorganization", | ||
name="organization_id", | ||
field=models.CharField( | ||
default=metering_billing.utils.utils.organization_uuid, max_length=100 | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="organization", | ||
name="organization_id", | ||
field=models.CharField( | ||
default=metering_billing.utils.utils.organization_uuid, max_length=100 | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.