27 lines
660 B
JSON
27 lines
660 B
JSON
{
|
|
"name": "Auth",
|
|
"version": "0.1.0",
|
|
"author": "Bryson Shepard <bryson@natureinpots.com>",
|
|
"description": "Handles user registration, login, logout, and invitation flows.",
|
|
"module": "plugins.auth",
|
|
"routes": {
|
|
"module": "plugins.auth.routes",
|
|
"blueprint": "bp",
|
|
"url_prefix": "/auth"
|
|
},
|
|
"models": [
|
|
"plugins.auth.models"
|
|
],
|
|
"template_globals": [
|
|
{
|
|
"name": "current_user",
|
|
"callable": "flask_login.current_user"
|
|
}
|
|
],
|
|
"user_loader": {
|
|
"module": "plugins.auth.models",
|
|
"callable": "register_user_loader"
|
|
},
|
|
"license": "Proprietary",
|
|
"repository": "https://github.com/your-org/your-app"
|
|
} |