9 lines
497 B
Plaintext
9 lines
497 B
Plaintext
<% define_content :link do %>
|
|
<%= HostUrl.protocol %>://<%= HostUrl.context_host(asset.context) %>/conversations/<%= asset.conversation_id %>
|
|
<% end %>
|
|
<% define_content :user_name do %>
|
|
<%= asset.author_short_name_with_shared_contexts(user) rescue t(:unknown_user, "Unknown User") %>
|
|
<% end %>
|
|
<%= t :body, "%{user_name} just added you to a conversation in Canvas.", :user_name => content(:user_name) %><br/>
|
|
<b><a href="<%= content :link %>"><%= t :link_text, "View Conversation" %></a></b>
|