-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:Zipstack/unstract into simple-promp…
…t-studio-crud
- Loading branch information
Showing
95 changed files
with
3,540 additions
and
283 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Basic WorkFlow | ||
|
||
`We can Add Workflows Here` | ||
|
||
## Login | ||
|
||
### Step | ||
|
||
1. Login | ||
2. Get Organizations | ||
3. Set Organization | ||
4. Use organizational APIs /unstract/<org_id>/ | ||
|
||
## Switch organization | ||
|
||
1. Get Organizations | ||
2. Set Organization | ||
3. Use organizational APIs /unstract/<org_id>/ | ||
|
||
## Get current user and Organization data | ||
|
||
- Use Get User Profile and Get Organization Info APIs | ||
|
||
## Signout | ||
|
||
1.signout APi |
Empty file.
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,5 @@ | ||
from django.contrib import admin | ||
|
||
from .models import Organization, User | ||
|
||
admin.site.register([Organization, User]) |
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,6 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class AccountConfig(AppConfig): | ||
default_auto_field = "django.db.models.BigAutoField" | ||
name = "account_v2" |
Oops, something went wrong.