Route for adding new application member
- domain method for creating a new application member - ApplicationInvitations domain class - nested form for adding a new user that holds user data, application permission sets, and environment roles - Invitation service can infer invitation type based on role it's given - new invitation email templates
This commit is contained in:
10
templates/emails/application/invitation.txt
Normal file
10
templates/emails/application/invitation.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
{% extends "emails/base.txt" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
Join this JEDI Cloud Application
|
||||
{{ owner }} has invited you to join a JEDI Cloud Application. Login now to view or use your JEDI Cloud resources.
|
||||
|
||||
{# url_for("application.accept_invitation", token=token, _external=True) #}
|
||||
|
||||
{% endblock %}
|
@@ -1,7 +1,4 @@
|
||||
Join this JEDI Cloud Portfolio
|
||||
{{ owner }} has invited you to join a JEDI Cloud Portfolio. Login now to view or use your JEDI Cloud resources.
|
||||
|
||||
{{ url_for("portfolios.accept_invitation", token=token, _external=True) }}
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
What is JEDI Cloud?
|
||||
JEDI Cloud is a DoD enterprise-wide solution for commercial cloud services.
|
10
templates/emails/portfolio/invitation.txt
Normal file
10
templates/emails/portfolio/invitation.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
{% extends "emails/base.txt" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
Join this JEDI Cloud Portfolio
|
||||
{{ owner }} has invited you to join a JEDI Cloud Portfolio. Login now to view or use your JEDI Cloud resources.
|
||||
|
||||
{{ url_for("portfolios.accept_invitation", token=token, _external=True) }}
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user