- 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
11 lines
294 B
Plaintext
11 lines
294 B
Plaintext
{% 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 %}
|