Merge branch 'main' into collaudo
Porta in collaudo l'invito trasmissione con email automatica.
This commit is contained in:
@@ -58,7 +58,7 @@ module Public
|
|||||||
|
|
||||||
def invite
|
def invite
|
||||||
require_club_owner_for_team!(@team)
|
require_club_owner_for_team!(@team)
|
||||||
@entitlements = @team.entitlements
|
redirect_to public_team_details_path(@team, anchor: "invita-trasmissione")
|
||||||
end
|
end
|
||||||
|
|
||||||
def assign_self_staff
|
def assign_self_staff
|
||||||
@@ -87,18 +87,32 @@ module Public
|
|||||||
email = params[:email]&.downcase&.strip
|
email = params[:email]&.downcase&.strip
|
||||||
Teams::StaffEmailValidator.assert_available!(team: @team, email: email, staff_kind: staff_kind)
|
Teams::StaffEmailValidator.assert_available!(team: @team, email: email, staff_kind: staff_kind)
|
||||||
token = TeamInvitation.generate_token
|
token = TeamInvitation.generate_token
|
||||||
@team.team_invitations.create!(
|
invitation = @team.team_invitations.create!(
|
||||||
email: email,
|
email: email,
|
||||||
token_digest: Digest::SHA256.hexdigest(token),
|
token_digest: Digest::SHA256.hexdigest(token),
|
||||||
role: "member",
|
role: "member",
|
||||||
staff_kind: staff_kind,
|
staff_kind: staff_kind,
|
||||||
expires_at: 7.days.from_now
|
expires_at: 7.days.from_now
|
||||||
)
|
)
|
||||||
@invite_url = join_public_invitation_url(token: token)
|
invite_url = public_invitation_url(token: token)
|
||||||
flash.now[:notice] = t("flash.teams.invite_link_generated")
|
flash[:invite_url] = invite_url
|
||||||
render :invite
|
|
||||||
|
begin
|
||||||
|
Teams::InvitationMailer.transmission_invite(
|
||||||
|
team: @team,
|
||||||
|
invitation: invitation,
|
||||||
|
invite_url: invite_url,
|
||||||
|
invited_by: current_user
|
||||||
|
).deliver_now
|
||||||
|
flash[:notice] = t("flash.teams.invite_email_sent", email: email)
|
||||||
|
rescue StandardError => e
|
||||||
|
Rails.logger.error("[invite_email] #{e.class}: #{e.message}")
|
||||||
|
flash[:alert] = t("flash.teams.invite_email_failed", email: email)
|
||||||
|
end
|
||||||
|
|
||||||
|
redirect_to public_team_details_path(@team, anchor: "invito-generato")
|
||||||
rescue Teams::EntitlementError, Teams::StaffAssignmentError => e
|
rescue Teams::EntitlementError, Teams::StaffAssignmentError => e
|
||||||
redirect_to public_team_invite_path(@team), alert: e.message
|
redirect_to public_team_details_path(@team, anchor: "invita-trasmissione"), alert: e.message
|
||||||
end
|
end
|
||||||
|
|
||||||
def remove_member
|
def remove_member
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
module Teams
|
||||||
|
class InvitationMailer < ApplicationMailer
|
||||||
|
default from: -> { MatchLiveTv.mail_from }
|
||||||
|
|
||||||
|
def transmission_invite(team:, invitation:, invite_url:, invited_by:)
|
||||||
|
@team = team
|
||||||
|
@club = team.club
|
||||||
|
@invitation = invitation
|
||||||
|
@invite_url = invite_url
|
||||||
|
@invited_by = invited_by
|
||||||
|
@expires_on = I18n.l(invitation.expires_at.to_date, format: :long)
|
||||||
|
|
||||||
|
I18n.with_locale(I18n.locale) do
|
||||||
|
mail(
|
||||||
|
to: invitation.email,
|
||||||
|
subject: t(
|
||||||
|
"mailers.transmission_invite.subject",
|
||||||
|
team: @team.name,
|
||||||
|
club: @club.name
|
||||||
|
)
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -1,13 +1,4 @@
|
|||||||
module Teams
|
module Teams
|
||||||
class StaffAssignmentError < StandardError
|
|
||||||
attr_reader :message
|
|
||||||
|
|
||||||
def initialize(message)
|
|
||||||
@message = message
|
|
||||||
super(message)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class StaffAssignment
|
class StaffAssignment
|
||||||
def self.call(team:, user:, staff_kind: "transmission", membership: nil)
|
def self.call(team:, user:, staff_kind: "transmission", membership: nil)
|
||||||
new(team: team, user: user, staff_kind: staff_kind, membership: membership).call
|
new(team: team, user: user, staff_kind: staff_kind, membership: membership).call
|
||||||
@@ -33,31 +24,4 @@ module Teams
|
|||||||
ut
|
ut
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class StaffEmailValidator
|
|
||||||
def self.assert_available!(team:, email:, except_user: nil, staff_kind: nil)
|
|
||||||
new(team: team, email: email, except_user: except_user).assert_available!
|
|
||||||
end
|
|
||||||
|
|
||||||
def initialize(team:, email:, except_user: nil)
|
|
||||||
@team = team
|
|
||||||
@email = email.to_s.downcase.strip
|
|
||||||
@except_user = except_user
|
|
||||||
end
|
|
||||||
|
|
||||||
def assert_available!
|
|
||||||
user_scope = @team.user_teams.joins(:user).where(users: { email: @email }).where.not(staff_kind: nil)
|
|
||||||
user_scope = user_scope.where.not(user_id: @except_user.id) if @except_user
|
|
||||||
if user_scope.exists?
|
|
||||||
raise StaffAssignmentError,
|
|
||||||
"L'email #{@email} è già assegnata come responsabile trasmissione per questa squadra."
|
|
||||||
end
|
|
||||||
|
|
||||||
inv = @team.team_invitations.pending.where("LOWER(email) = ?", @email)
|
|
||||||
return unless inv.exists?
|
|
||||||
|
|
||||||
raise StaffAssignmentError,
|
|
||||||
"Esiste già un invito in sospeso per #{@email}."
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
module Teams
|
||||||
|
class StaffAssignmentError < StandardError
|
||||||
|
attr_reader :message
|
||||||
|
|
||||||
|
def initialize(message)
|
||||||
|
@message = message
|
||||||
|
super(message)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
module Teams
|
||||||
|
class StaffEmailValidator
|
||||||
|
def self.assert_available!(team:, email:, except_user: nil, staff_kind: nil)
|
||||||
|
new(team: team, email: email, except_user: except_user).assert_available!
|
||||||
|
end
|
||||||
|
|
||||||
|
def initialize(team:, email:, except_user: nil)
|
||||||
|
@team = team
|
||||||
|
@email = email.to_s.downcase.strip
|
||||||
|
@except_user = except_user
|
||||||
|
end
|
||||||
|
|
||||||
|
def assert_available!
|
||||||
|
user_scope = @team.user_teams.joins(:user).where(users: { email: @email }).where.not(staff_kind: nil)
|
||||||
|
user_scope = user_scope.where.not(user_id: @except_user.id) if @except_user
|
||||||
|
if user_scope.exists?
|
||||||
|
raise StaffAssignmentError,
|
||||||
|
"L'email #{@email} è già assegnata come responsabile trasmissione per questa squadra."
|
||||||
|
end
|
||||||
|
|
||||||
|
inv = @team.team_invitations.pending.where("LOWER(email) = ?", @email)
|
||||||
|
return unless inv.exists?
|
||||||
|
|
||||||
|
raise StaffAssignmentError,
|
||||||
|
"Esiste già un invito in sospeso per #{@email}."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body style="margin:0;padding:24px;background:#ffffff;color:#1a1a1a;">
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<%= render "shared/meta_tags" %>
|
<%= render "shared/meta_tags" %>
|
||||||
<%= yield :head %>
|
<%= yield :head %>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
|
||||||
<link rel="stylesheet" href="/marketing.css?v=63">
|
<link rel="stylesheet" href="/marketing.css?v=64">
|
||||||
</head>
|
</head>
|
||||||
<body data-confirm-i18n='<%= raw confirm_dialog_i18n_json %>'<% if MatchLiveTv.google_analytics_configured? %> data-ga-id="<%= MatchLiveTv.google_analytics_measurement_id %>"<% end %>>
|
<body data-confirm-i18n='<%= raw confirm_dialog_i18n_json %>'<% if MatchLiveTv.google_analytics_configured? %> data-ga-id="<%= MatchLiveTv.google_analytics_measurement_id %>"<% end %>>
|
||||||
<%= render "shared/cookie_banner" %>
|
<%= render "shared/cookie_banner" %>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<title><%= content_for?(:title) ? yield(:title) : "Match Live TV" %></title>
|
<title><%= content_for?(:title) ? yield(:title) : "Match Live TV" %></title>
|
||||||
<%= render "shared/meta_tags" %>
|
<%= render "shared/meta_tags" %>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
|
||||||
<link rel="stylesheet" href="/marketing.css?v=63">
|
<link rel="stylesheet" href="/marketing.css?v=64">
|
||||||
<link rel="stylesheet" href="/live.css?v=26">
|
<link rel="stylesheet" href="/live.css?v=26">
|
||||||
<%= yield :head %>
|
<%= yield :head %>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<% recordings = local_assigns[:recordings] %>
|
<% recordings = local_assigns[:recordings] %>
|
||||||
<% entitlements = local_assigns[:entitlements] %>
|
<% entitlements = local_assigns[:entitlements] %>
|
||||||
|
|
||||||
<section class="team-streaming-staff">
|
<section class="team-streaming-staff" id="responsabili-trasmissione">
|
||||||
<% if can_manage %>
|
<% if can_manage %>
|
||||||
<% if owner_membership&.staff_kind.blank? %>
|
<% if owner_membership&.staff_kind.blank? %>
|
||||||
<div class="card team-streaming-staff__self">
|
<div class="card team-streaming-staff__self">
|
||||||
@@ -51,12 +51,34 @@
|
|||||||
<% else %>
|
<% else %>
|
||||||
<p class="muted">
|
<p class="muted">
|
||||||
<%= t("team.streaming_staff.no_staff") %>
|
<%= t("team.streaming_staff.no_staff") %>
|
||||||
<% if can_manage %><%= link_to t("team.streaming_staff.invite_someone"), public_team_invite_path(team) %>.<% end %>
|
<% if can_manage %><%= link_to t("team.streaming_staff.invite_someone"), "#invita-trasmissione" %>.<% end %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<% if can_manage %>
|
<% if can_manage %>
|
||||||
|
<div class="card team-invite-form" id="invita-trasmissione">
|
||||||
|
<h2><%= t("team.streaming_staff.invite_form_heading") %></h2>
|
||||||
|
<p class="muted team-invite-form__hint"><%= t("team.streaming_staff.invite_form_hint") %></p>
|
||||||
|
<%= form_with url: public_team_invite_path(team), method: :post, class: "team-invite-form__fields" do %>
|
||||||
|
<%= hidden_field_tag :staff_kind, "transmission" %>
|
||||||
|
<%= label_tag :email, t("team.invite.email_label") %>
|
||||||
|
<%= email_field_tag :email, params[:email], required: true, autocomplete: "email", placeholder: "nome@email.it" %>
|
||||||
|
<%= submit_tag t("team.invite.submit"), class: "btn btn-primary" %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if flash[:invite_url].present? %>
|
||||||
|
<div class="team-invite-link" id="invito-generato">
|
||||||
|
<p class="team-invite-link__title"><%= t("team.invite.share_hint") %></p>
|
||||||
|
<code class="team-invite-link__url" id="team-invite-url"><%= flash[:invite_url] %></code>
|
||||||
|
<button type="button" class="btn btn-secondary team-invite-link__copy" data-copy-target="team-invite-url">
|
||||||
|
<%= t("regia.copy_link") %>
|
||||||
|
</button>
|
||||||
|
<p class="muted team-invite-link__note"><%= t("team.streaming_staff.invite_once_note") %></p>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2><%= t("team.streaming_staff.pending_invitations_heading") %></h2>
|
<h2><%= t("team.streaming_staff.pending_invitations_heading") %></h2>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<% if pending_invitations.any? %>
|
<% if pending_invitations.any? %>
|
||||||
@@ -114,3 +136,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.querySelectorAll("[data-copy-target]").forEach(function (btn) {
|
||||||
|
btn.addEventListener("click", async function () {
|
||||||
|
var el = document.getElementById(btn.getAttribute("data-copy-target"));
|
||||||
|
if (!el) return;
|
||||||
|
try {
|
||||||
|
await navigator.clipboard.writeText(el.textContent.trim());
|
||||||
|
btn.textContent = <%= raw t("team.streaming_staff.copied").to_json %>;
|
||||||
|
} catch (e) {
|
||||||
|
window.getSelection().selectAllChildren(el);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
<% if @can_manage %>
|
<% if @can_manage %>
|
||||||
<%= link_to t("club.back_to_club"), public_club_path(@club), class: "btn btn-secondary" %>
|
<%= link_to t("club.back_to_club"), public_club_path(@club), class: "btn btn-secondary" %>
|
||||||
<%= link_to t("team.details.public_page"), public_team_page_path(@team.slug), class: "btn btn-secondary", target: "_blank", rel: "noopener" %>
|
<%= link_to t("team.details.public_page"), public_team_page_path(@team.slug), class: "btn btn-secondary", target: "_blank", rel: "noopener" %>
|
||||||
<%= link_to t("team.details.streaming_managers"), public_team_invite_path(@team), class: "btn btn-secondary" %>
|
<%= link_to t("team.details.streaming_managers"), "#responsabili-trasmissione", class: "btn btn-secondary" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if current_user.can_stream_for?(@team) %>
|
<% if current_user.can_stream_for?(@team) %>
|
||||||
<%= link_to t("team.details.schedule_matches"), public_team_matches_path(@team), class: "btn btn-primary" %>
|
<%= link_to t("team.details.schedule_matches"), public_team_matches_path(@team), class: "btn btn-primary" %>
|
||||||
|
|||||||
@@ -1,38 +1,8 @@
|
|||||||
|
<%# Pagina legacy: l'invito è sulla pagina dettagli squadra. %>
|
||||||
<% content_for :title, t("team.invite.title", name: @team.name) %>
|
<% content_for :title, t("team.invite.title", name: @team.name) %>
|
||||||
<% content_for :robots, "noindex, nofollow" %>
|
<% content_for :robots, "noindex, nofollow" %>
|
||||||
|
|
||||||
<div class="wrap" style="padding-top:20px">
|
<div class="wrap" style="padding-top:20px">
|
||||||
<h1><%= t("team.invite.heading") %></h1>
|
<p class="muted"><%= t("team.streaming_staff.invite_form_hint") %></p>
|
||||||
<p>
|
<p><%= link_to t("team.back_to_details"), public_team_details_path(@team, anchor: "invita-trasmissione"), class: "btn btn-primary" %></p>
|
||||||
<%= t("team.invite.assigned_label") %> <strong><%= @entitlements.staff_count_for("transmission") %> / <%= @entitlements.max_staff_transmission || "∞" %></strong>
|
|
||||||
<%= t("team.invite.per_team_note") %>
|
|
||||||
</p>
|
|
||||||
<p class="muted" style="max-width:640px">
|
|
||||||
<%= raw t("team.invite.info") %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<% owner_membership = current_user.user_teams.find_by(team: @team) %>
|
|
||||||
<% if owner_membership&.staff_kind.blank? %>
|
|
||||||
<div class="card" style="max-width:520px;margin-bottom:16px">
|
|
||||||
<p style="margin:0 0 12px;color:#aaa;font-size:0.92rem">
|
|
||||||
<%= raw t("team.invite.self_assign_hint_html", email: current_user.email) %>
|
|
||||||
</p>
|
|
||||||
<%= button_to t("team.invite.self_assign_submit"), public_team_assign_self_staff_path(@team), method: :post, params: { staff_kind: "transmission" }, class: "btn btn-primary" %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<div class="card" style="max-width:520px">
|
|
||||||
<h2 style="margin-top:0;font-size:1.05rem"><%= t("team.invite.invite_other_heading") %></h2>
|
|
||||||
<%= form_with url: public_team_invite_path(@team), method: :post do %>
|
|
||||||
<%= hidden_field_tag :staff_kind, "transmission" %>
|
|
||||||
<%= label_tag :email, t("team.invite.email_label") %>
|
|
||||||
<%= email_field_tag :email, params[:email], required: true %>
|
|
||||||
<%= submit_tag t("team.invite.submit"), class: "btn btn-primary" %>
|
|
||||||
<% end %>
|
|
||||||
<% if defined?(@invite_url) && @invite_url.present? %>
|
|
||||||
<p style="margin-top:16px"><%= t("team.invite.share_hint") %></p>
|
|
||||||
<code style="word-break:break-all;display:block;background:#0a0a0e;padding:12px;border-radius:8px"><%= @invite_url %></code>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
<p><%= link_to t("team.back_to_details"), public_team_details_path(@team) %></p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 16px; line-height: 1.5; color: #1a1a1a; max-width: 560px;">
|
||||||
|
<p style="margin: 0 0 16px;"><%= t("mailers.transmission_invite.hello") %></p>
|
||||||
|
|
||||||
|
<p style="margin: 0 0 16px;">
|
||||||
|
<%= raw t(
|
||||||
|
"mailers.transmission_invite.body_html",
|
||||||
|
inviter: @invited_by.name,
|
||||||
|
team: @team.name,
|
||||||
|
club: @club.name
|
||||||
|
) %>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p style="margin: 0 0 16px;">
|
||||||
|
<a href="<%= @invite_url %>" style="display: inline-block; background: #e53935; color: #ffffff; text-decoration: none; padding: 12px 18px; border-radius: 8px; font-weight: 600;">
|
||||||
|
<%= t("mailers.transmission_invite.cta") %>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p style="margin: 0 0 16px; color: #444; font-size: 14px;">
|
||||||
|
<%= t("mailers.transmission_invite.link_fallback") %><br>
|
||||||
|
<a href="<%= @invite_url %>" style="color: #e53935; word-break: break-all;"><%= @invite_url %></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p style="margin: 0 0 16px;"><%= t("mailers.transmission_invite.steps") %></p>
|
||||||
|
|
||||||
|
<p style="margin: 0 0 16px;"><%= t("mailers.transmission_invite.expiry", date: @expires_on) %></p>
|
||||||
|
|
||||||
|
<p style="margin: 0 0 24px; color: #666;"><%= t("mailers.transmission_invite.ignore") %></p>
|
||||||
|
|
||||||
|
<p style="margin: 0; color: #888; font-size: 12px;"><%= t("mailers.transmission_invite.footer", email: MatchLiveTv.privacy_controller_email) %></p>
|
||||||
|
</div>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<%= t("mailers.transmission_invite.hello") %>
|
||||||
|
|
||||||
|
<%= t(
|
||||||
|
"mailers.transmission_invite.body_text",
|
||||||
|
inviter: @invited_by.name,
|
||||||
|
team: @team.name,
|
||||||
|
club: @club.name
|
||||||
|
) %>
|
||||||
|
|
||||||
|
<%= t("mailers.transmission_invite.link_text") %>
|
||||||
|
<%= @invite_url %>
|
||||||
|
|
||||||
|
<%= t("mailers.transmission_invite.steps") %>
|
||||||
|
|
||||||
|
<%= t("mailers.transmission_invite.expiry", date: @expires_on) %>
|
||||||
|
|
||||||
|
<%= t("mailers.transmission_invite.ignore") %>
|
||||||
|
|
||||||
|
<%= t("mailers.transmission_invite.footer", email: MatchLiveTv.privacy_controller_email) %>
|
||||||
@@ -170,8 +170,8 @@ de:
|
|||||||
self_assign_submit: Das mache ich — Übertragungsverantwortlicher
|
self_assign_submit: Das mache ich — Übertragungsverantwortlicher
|
||||||
invite_other_heading: Eine weitere E-Mail einladen
|
invite_other_heading: Eine weitere E-Mail einladen
|
||||||
email_label: E-Mail des Übertragungsverantwortlichen
|
email_label: E-Mail des Übertragungsverantwortlichen
|
||||||
submit: Zugangslink erstellen
|
submit: Zugangslink per E-Mail senden
|
||||||
share_hint: "Teilen (7 Tage gültig):"
|
share_hint: "Link auch per E-Mail gesendet (7 Tage gültig):"
|
||||||
billing:
|
billing:
|
||||||
title: "Abonnement — %{name}"
|
title: "Abonnement — %{name}"
|
||||||
team_label: "Team:"
|
team_label: "Team:"
|
||||||
@@ -208,6 +208,10 @@ de:
|
|||||||
revoke_confirm: "Zugriff von %{name} widerrufen?"
|
revoke_confirm: "Zugriff von %{name} widerrufen?"
|
||||||
no_staff: Noch keine Übertragungsverantwortlichen.
|
no_staff: Noch keine Übertragungsverantwortlichen.
|
||||||
invite_someone: Jemanden einladen
|
invite_someone: Jemanden einladen
|
||||||
|
invite_form_heading: Account zum Übertragen einladen
|
||||||
|
invite_form_hint: "Das ist nicht der Kader (Spieler/Staff vor Ort). E-Mail eingeben: wir senden den Link automatisch; du kannst ihn auch kopieren und teilen."
|
||||||
|
invite_once_note: "Bei Bedarf den Link unten auch für einen zweiten Versand kopieren (WhatsApp, SMS)."
|
||||||
|
copied: Kopiert
|
||||||
pending_invitations_heading: Ausstehende Einladungen
|
pending_invitations_heading: Ausstehende Einladungen
|
||||||
col_email_short: E-Mail
|
col_email_short: E-Mail
|
||||||
col_expires: Läuft ab
|
col_expires: Läuft ab
|
||||||
@@ -636,6 +640,8 @@ de:
|
|||||||
now_staff: Dein Konto ist jetzt Übertragungsverantwortlicher.
|
now_staff: Dein Konto ist jetzt Übertragungsverantwortlicher.
|
||||||
staff_role_removed: Staff-Rolle von deinem Konto entfernt.
|
staff_role_removed: Staff-Rolle von deinem Konto entfernt.
|
||||||
invite_link_generated: "Einladungslink erstellt (7 Tage gültig)"
|
invite_link_generated: "Einladungslink erstellt (7 Tage gültig)"
|
||||||
|
invite_email_sent: "Einladung an %{email} gesendet (Link 7 Tage gültig)"
|
||||||
|
invite_email_failed: "Einladung erstellt, aber die E-Mail an %{email} konnte nicht gesendet werden. Kopiere und teile den Link unten."
|
||||||
access_revoked: Zugriff widerrufen
|
access_revoked: Zugriff widerrufen
|
||||||
invitation_canceled: Einladung storniert
|
invitation_canceled: Einladung storniert
|
||||||
youtube_disconnected: YouTube-Kanal des Vereins getrennt
|
youtube_disconnected: YouTube-Kanal des Vereins getrennt
|
||||||
|
|||||||
@@ -165,8 +165,8 @@ en:
|
|||||||
self_assign_submit: I'll do it — broadcast manager
|
self_assign_submit: I'll do it — broadcast manager
|
||||||
invite_other_heading: Invite another email
|
invite_other_heading: Invite another email
|
||||||
email_label: Broadcast manager's email
|
email_label: Broadcast manager's email
|
||||||
submit: Generate access link
|
submit: Send invite by email
|
||||||
share_hint: "Share (valid for 7 days):"
|
share_hint: "Link also sent by email (valid for 7 days):"
|
||||||
billing:
|
billing:
|
||||||
title: "Subscription — %{name}"
|
title: "Subscription — %{name}"
|
||||||
team_label: "Team:"
|
team_label: "Team:"
|
||||||
@@ -203,6 +203,10 @@ en:
|
|||||||
revoke_confirm: "Revoke access for %{name}?"
|
revoke_confirm: "Revoke access for %{name}?"
|
||||||
no_staff: No broadcast managers yet.
|
no_staff: No broadcast managers yet.
|
||||||
invite_someone: Invite someone
|
invite_someone: Invite someone
|
||||||
|
invite_form_heading: Invite an account to broadcast
|
||||||
|
invite_form_hint: "This is not the roster (players/on-court staff). Enter the email: we send the link automatically; you can also copy and share it."
|
||||||
|
invite_once_note: "If needed, copy the link below for a second share (WhatsApp, SMS)."
|
||||||
|
copied: Copied
|
||||||
pending_invitations_heading: Pending invitations
|
pending_invitations_heading: Pending invitations
|
||||||
col_email_short: Email
|
col_email_short: Email
|
||||||
col_expires: Expires
|
col_expires: Expires
|
||||||
@@ -631,6 +635,8 @@ en:
|
|||||||
now_staff: Your account is now a broadcast manager.
|
now_staff: Your account is now a broadcast manager.
|
||||||
staff_role_removed: Staff role removed from your account.
|
staff_role_removed: Staff role removed from your account.
|
||||||
invite_link_generated: "Invite link generated (valid for 7 days)"
|
invite_link_generated: "Invite link generated (valid for 7 days)"
|
||||||
|
invite_email_sent: "Invite sent to %{email} (link valid for 7 days)"
|
||||||
|
invite_email_failed: "Invite created, but the email to %{email} could not be sent. Copy and share the link below."
|
||||||
access_revoked: Access revoked
|
access_revoked: Access revoked
|
||||||
invitation_canceled: Invitation canceled
|
invitation_canceled: Invitation canceled
|
||||||
youtube_disconnected: Club YouTube channel disconnected
|
youtube_disconnected: Club YouTube channel disconnected
|
||||||
|
|||||||
@@ -170,8 +170,8 @@ es:
|
|||||||
self_assign_submit: Yo me encargo — responsable de transmisión
|
self_assign_submit: Yo me encargo — responsable de transmisión
|
||||||
invite_other_heading: Invitar a otro correo
|
invite_other_heading: Invitar a otro correo
|
||||||
email_label: Correo del responsable de transmisión
|
email_label: Correo del responsable de transmisión
|
||||||
submit: Generar enlace de acceso
|
submit: Enviar invitación por email
|
||||||
share_hint: "Comparte (válido 7 días):"
|
share_hint: "Enlace también enviado por email (válido 7 días):"
|
||||||
billing:
|
billing:
|
||||||
title: "Suscripción — %{name}"
|
title: "Suscripción — %{name}"
|
||||||
team_label: "Equipo:"
|
team_label: "Equipo:"
|
||||||
@@ -208,6 +208,10 @@ es:
|
|||||||
revoke_confirm: "¿Revocar el acceso a %{name}?"
|
revoke_confirm: "¿Revocar el acceso a %{name}?"
|
||||||
no_staff: Aún no hay responsables de transmisión.
|
no_staff: Aún no hay responsables de transmisión.
|
||||||
invite_someone: Invitar a alguien
|
invite_someone: Invitar a alguien
|
||||||
|
invite_form_heading: Invitar una cuenta a transmitir
|
||||||
|
invite_form_hint: "No es la plantilla (jugadores/staff en pista). Introduce el email: enviamos el enlace automáticamente; también puedes copiarlo y compartirlo."
|
||||||
|
invite_once_note: "Si hace falta, copia también el enlace abajo para un segundo envío (WhatsApp, SMS)."
|
||||||
|
copied: Copiado
|
||||||
pending_invitations_heading: Invitaciones pendientes
|
pending_invitations_heading: Invitaciones pendientes
|
||||||
col_email_short: Correo
|
col_email_short: Correo
|
||||||
col_expires: Caduca
|
col_expires: Caduca
|
||||||
@@ -636,6 +640,8 @@ es:
|
|||||||
now_staff: Tu cuenta ahora es responsable de transmisión.
|
now_staff: Tu cuenta ahora es responsable de transmisión.
|
||||||
staff_role_removed: Rol de staff eliminado de tu cuenta.
|
staff_role_removed: Rol de staff eliminado de tu cuenta.
|
||||||
invite_link_generated: "Enlace de invitación generado (válido 7 días)"
|
invite_link_generated: "Enlace de invitación generado (válido 7 días)"
|
||||||
|
invite_email_sent: "Invitación enviada a %{email} (enlace válido 7 días)"
|
||||||
|
invite_email_failed: "Invitación creada, pero no se pudo enviar el email a %{email}. Copia y comparte el enlace de abajo."
|
||||||
access_revoked: Acceso revocado
|
access_revoked: Acceso revocado
|
||||||
invitation_canceled: Invitación anulada
|
invitation_canceled: Invitación anulada
|
||||||
youtube_disconnected: Canal de YouTube del club desconectado
|
youtube_disconnected: Canal de YouTube del club desconectado
|
||||||
|
|||||||
@@ -170,8 +170,8 @@ fr:
|
|||||||
self_assign_submit: C'est moi — responsable diffusion
|
self_assign_submit: C'est moi — responsable diffusion
|
||||||
invite_other_heading: Inviter un autre e-mail
|
invite_other_heading: Inviter un autre e-mail
|
||||||
email_label: E-mail du responsable diffusion
|
email_label: E-mail du responsable diffusion
|
||||||
submit: Générer le lien d'accès
|
submit: Envoyer l'invitation par e-mail
|
||||||
share_hint: "Partage (valable 7 jours) :"
|
share_hint: "Lien aussi envoyé par e-mail (valable 7 jours) :"
|
||||||
billing:
|
billing:
|
||||||
title: "Abonnement — %{name}"
|
title: "Abonnement — %{name}"
|
||||||
team_label: "Équipe :"
|
team_label: "Équipe :"
|
||||||
@@ -208,6 +208,10 @@ fr:
|
|||||||
revoke_confirm: "Révoquer l'accès de %{name} ?"
|
revoke_confirm: "Révoquer l'accès de %{name} ?"
|
||||||
no_staff: Aucun responsable diffusion pour le moment.
|
no_staff: Aucun responsable diffusion pour le moment.
|
||||||
invite_someone: Inviter quelqu'un
|
invite_someone: Inviter quelqu'un
|
||||||
|
invite_form_heading: Inviter un compte à diffuser
|
||||||
|
invite_form_hint: "Ce n’est pas l’effectif (joueurs/staff sur le terrain). Saisissez l’e-mail : nous envoyons le lien automatiquement ; vous pouvez aussi le copier et le partager."
|
||||||
|
invite_once_note: "Si besoin, copiez aussi le lien ci-dessous pour un second envoi (WhatsApp, SMS)."
|
||||||
|
copied: Copié
|
||||||
pending_invitations_heading: Invitations en attente
|
pending_invitations_heading: Invitations en attente
|
||||||
col_email_short: E-mail
|
col_email_short: E-mail
|
||||||
col_expires: Expire
|
col_expires: Expire
|
||||||
@@ -636,6 +640,8 @@ fr:
|
|||||||
now_staff: Ton compte est maintenant responsable diffusion.
|
now_staff: Ton compte est maintenant responsable diffusion.
|
||||||
staff_role_removed: Rôle staff retiré de ton compte.
|
staff_role_removed: Rôle staff retiré de ton compte.
|
||||||
invite_link_generated: "Lien d'invitation généré (valable 7 jours)"
|
invite_link_generated: "Lien d'invitation généré (valable 7 jours)"
|
||||||
|
invite_email_sent: "Invitation envoyée à %{email} (lien valable 7 jours)"
|
||||||
|
invite_email_failed: "Invitation créée, mais l'e-mail à %{email} n'a pas pu être envoyé. Copiez et partagez le lien ci-dessous."
|
||||||
access_revoked: Accès révoqué
|
access_revoked: Accès révoqué
|
||||||
invitation_canceled: Invitation annulée
|
invitation_canceled: Invitation annulée
|
||||||
youtube_disconnected: Chaîne YouTube du club déconnectée
|
youtube_disconnected: Chaîne YouTube du club déconnectée
|
||||||
|
|||||||
@@ -165,8 +165,8 @@ it:
|
|||||||
self_assign_submit: Sono io — responsabile trasmissione
|
self_assign_submit: Sono io — responsabile trasmissione
|
||||||
invite_other_heading: Invita un'altra email
|
invite_other_heading: Invita un'altra email
|
||||||
email_label: Email del responsabile trasmissione
|
email_label: Email del responsabile trasmissione
|
||||||
submit: Genera link di accesso
|
submit: Invia invito per email
|
||||||
share_hint: "Condividi (valido 7 giorni):"
|
share_hint: "Link inviato anche per email (valido 7 giorni):"
|
||||||
billing:
|
billing:
|
||||||
title: "Abbonamento — %{name}"
|
title: "Abbonamento — %{name}"
|
||||||
team_label: "Squadra:"
|
team_label: "Squadra:"
|
||||||
@@ -203,6 +203,10 @@ it:
|
|||||||
revoke_confirm: "Revocare l'accesso a %{name}?"
|
revoke_confirm: "Revocare l'accesso a %{name}?"
|
||||||
no_staff: Nessun responsabile trasmissione.
|
no_staff: Nessun responsabile trasmissione.
|
||||||
invite_someone: Invita qualcuno
|
invite_someone: Invita qualcuno
|
||||||
|
invite_form_heading: Invita un account a trasmettere
|
||||||
|
invite_form_hint: "Non è l’organico (giocatori/staff in campo). Inserisci l’email: inviamo il link automaticamente; puoi anche copiarlo e condividerlo."
|
||||||
|
invite_once_note: "Se serve, copia il link anche qui sotto per un secondo invio (WhatsApp, SMS)."
|
||||||
|
copied: Copiato
|
||||||
pending_invitations_heading: Inviti in attesa
|
pending_invitations_heading: Inviti in attesa
|
||||||
col_email_short: Email
|
col_email_short: Email
|
||||||
col_expires: Scade
|
col_expires: Scade
|
||||||
@@ -631,6 +635,8 @@ it:
|
|||||||
now_staff: Il tuo account è ora responsabile trasmissione.
|
now_staff: Il tuo account è ora responsabile trasmissione.
|
||||||
staff_role_removed: Ruolo staff rimosso dal tuo account.
|
staff_role_removed: Ruolo staff rimosso dal tuo account.
|
||||||
invite_link_generated: "Link invito generato (valido 7 giorni)"
|
invite_link_generated: "Link invito generato (valido 7 giorni)"
|
||||||
|
invite_email_sent: "Invito inviato a %{email} (link valido 7 giorni)"
|
||||||
|
invite_email_failed: "Invito creato, ma l’email a %{email} non è partita. Copia e condividi il link qui sotto."
|
||||||
access_revoked: Accesso revocato
|
access_revoked: Accesso revocato
|
||||||
invitation_canceled: Invito annullato
|
invitation_canceled: Invito annullato
|
||||||
youtube_disconnected: Canale YouTube della società scollegato
|
youtube_disconnected: Canale YouTube della società scollegato
|
||||||
|
|||||||
@@ -31,6 +31,19 @@ de:
|
|||||||
open_text: "Öffnen: %{url}"
|
open_text: "Öffnen: %{url}"
|
||||||
archive_text: "Archiv: %{url}"
|
archive_text: "Archiv: %{url}"
|
||||||
footer: "Match Live TV — %{email}"
|
footer: "Match Live TV — %{email}"
|
||||||
|
transmission_invite:
|
||||||
|
subject: "Einladung zum Übertragen — %{team} (%{club})"
|
||||||
|
hello: Hallo,
|
||||||
|
body_html: "<strong>%{inviter}</strong> hat dich als Übertragungsverantwortliche/n für <strong>%{team}</strong> (%{club}) auf Match Live TV eingeladen."
|
||||||
|
body_text: "%{inviter} hat dich als Übertragungsverantwortliche/n für %{team} (%{club}) auf Match Live TV eingeladen."
|
||||||
|
cta: Einladung annehmen
|
||||||
|
link_html: <a href="%{url}">Einladung annehmen</a>
|
||||||
|
link_text: "Öffne diesen Link zum Annehmen:"
|
||||||
|
link_fallback: "Falls der Button nicht funktioniert, öffne diesen Link:"
|
||||||
|
steps: "Melde dich mit derselben E-Mail an oder registriere dich, nimm die Einladung an und starte Übertragungen in der Match-Live-TV-App."
|
||||||
|
expiry: "Der Link ist gültig bis %{date}."
|
||||||
|
ignore: Wenn du diese Nachricht nicht erwartet hast, kannst du sie ignorieren.
|
||||||
|
footer: "Match Live TV — %{email}"
|
||||||
invoice:
|
invoice:
|
||||||
subject: "Rechnung %{number} — Match Live TV"
|
subject: "Rechnung %{number} — Match Live TV"
|
||||||
attachment_prefix: rechnung
|
attachment_prefix: rechnung
|
||||||
|
|||||||
@@ -31,6 +31,19 @@ en:
|
|||||||
open_text: "Open: %{url}"
|
open_text: "Open: %{url}"
|
||||||
archive_text: "Archive: %{url}"
|
archive_text: "Archive: %{url}"
|
||||||
footer: "Match Live TV — %{email}"
|
footer: "Match Live TV — %{email}"
|
||||||
|
transmission_invite:
|
||||||
|
subject: "Broadcast invite — %{team} (%{club})"
|
||||||
|
hello: Hi,
|
||||||
|
body_html: "<strong>%{inviter}</strong> invited you as a broadcast manager for <strong>%{team}</strong> (%{club}) on Match Live TV."
|
||||||
|
body_text: "%{inviter} invited you as a broadcast manager for %{team} (%{club}) on Match Live TV."
|
||||||
|
cta: Accept the invite
|
||||||
|
link_html: <a href="%{url}">Accept the invite</a>
|
||||||
|
link_text: "Open this link to accept:"
|
||||||
|
link_fallback: "If the button does not work, open this link:"
|
||||||
|
steps: "Sign in or register with this same email, accept the invite, then start streams from the Match Live TV app."
|
||||||
|
expiry: "The link is valid until %{date}."
|
||||||
|
ignore: If you were not expecting this message, you can ignore it.
|
||||||
|
footer: "Match Live TV — %{email}"
|
||||||
invoice:
|
invoice:
|
||||||
subject: "Invoice %{number} — Match Live TV"
|
subject: "Invoice %{number} — Match Live TV"
|
||||||
attachment_prefix: invoice
|
attachment_prefix: invoice
|
||||||
|
|||||||
@@ -31,6 +31,19 @@ es:
|
|||||||
open_text: "Abrir: %{url}"
|
open_text: "Abrir: %{url}"
|
||||||
archive_text: "Archivo: %{url}"
|
archive_text: "Archivo: %{url}"
|
||||||
footer: "Match Live TV — %{email}"
|
footer: "Match Live TV — %{email}"
|
||||||
|
transmission_invite:
|
||||||
|
subject: "Invitación a transmitir — %{team} (%{club})"
|
||||||
|
hello: Hola,
|
||||||
|
body_html: "<strong>%{inviter}</strong> te ha invitado como responsable de transmisión de <strong>%{team}</strong> (%{club}) en Match Live TV."
|
||||||
|
body_text: "%{inviter} te ha invitado como responsable de transmisión de %{team} (%{club}) en Match Live TV."
|
||||||
|
cta: Aceptar la invitación
|
||||||
|
link_html: <a href="%{url}">Aceptar la invitación</a>
|
||||||
|
link_text: "Abre este enlace para aceptar:"
|
||||||
|
link_fallback: "Si el botón no funciona, abre este enlace:"
|
||||||
|
steps: "Inicia sesión o regístrate con este mismo email, acepta la invitación y lanza las directos desde la app Match Live TV."
|
||||||
|
expiry: "El enlace es válido hasta el %{date}."
|
||||||
|
ignore: Si no esperabas este mensaje, puedes ignorarlo.
|
||||||
|
footer: "Match Live TV — %{email}"
|
||||||
invoice:
|
invoice:
|
||||||
subject: "Factura %{number} — Match Live TV"
|
subject: "Factura %{number} — Match Live TV"
|
||||||
attachment_prefix: factura
|
attachment_prefix: factura
|
||||||
|
|||||||
@@ -31,6 +31,19 @@ fr:
|
|||||||
open_text: "Ouvrir : %{url}"
|
open_text: "Ouvrir : %{url}"
|
||||||
archive_text: "Archive : %{url}"
|
archive_text: "Archive : %{url}"
|
||||||
footer: "Match Live TV — %{email}"
|
footer: "Match Live TV — %{email}"
|
||||||
|
transmission_invite:
|
||||||
|
subject: "Invitation à diffuser — %{team} (%{club})"
|
||||||
|
hello: Bonjour,
|
||||||
|
body_html: "<strong>%{inviter}</strong> vous a invité comme responsable diffusion pour <strong>%{team}</strong> (%{club}) sur Match Live TV."
|
||||||
|
body_text: "%{inviter} vous a invité comme responsable diffusion pour %{team} (%{club}) sur Match Live TV."
|
||||||
|
cta: Accepter l’invitation
|
||||||
|
link_html: <a href="%{url}">Accepter l’invitation</a>
|
||||||
|
link_text: "Ouvrez ce lien pour accepter :"
|
||||||
|
link_fallback: "Si le bouton ne fonctionne pas, ouvrez ce lien :"
|
||||||
|
steps: "Connectez-vous ou inscrivez-vous avec cette même adresse e-mail, acceptez l’invitation, puis lancez les directs depuis l’app Match Live TV."
|
||||||
|
expiry: "Le lien est valable jusqu’au %{date}."
|
||||||
|
ignore: Si vous n’attendiez pas ce message, vous pouvez l’ignorer.
|
||||||
|
footer: "Match Live TV — %{email}"
|
||||||
invoice:
|
invoice:
|
||||||
subject: "Facture %{number} — Match Live TV"
|
subject: "Facture %{number} — Match Live TV"
|
||||||
attachment_prefix: facture
|
attachment_prefix: facture
|
||||||
|
|||||||
@@ -31,6 +31,19 @@ it:
|
|||||||
open_text: "Apri: %{url}"
|
open_text: "Apri: %{url}"
|
||||||
archive_text: "Archivio: %{url}"
|
archive_text: "Archivio: %{url}"
|
||||||
footer: "Match Live TV — %{email}"
|
footer: "Match Live TV — %{email}"
|
||||||
|
transmission_invite:
|
||||||
|
subject: "Invito a trasmettere — %{team} (%{club})"
|
||||||
|
hello: Ciao,
|
||||||
|
body_html: "<strong>%{inviter}</strong> ti ha invitato come responsabile trasmissione per <strong>%{team}</strong> (%{club}) su Match Live TV."
|
||||||
|
body_text: "%{inviter} ti ha invitato come responsabile trasmissione per %{team} (%{club}) su Match Live TV."
|
||||||
|
cta: Accetta l’invito
|
||||||
|
link_html: <a href="%{url}">Accetta l’invito</a>
|
||||||
|
link_text: "Apri questo link per accettare:"
|
||||||
|
link_fallback: "Se il pulsante non funziona, apri questo link:"
|
||||||
|
steps: "Accedi o registrati con questa stessa email, accetta l’invito e avvia le dirette dall’app Match Live TV."
|
||||||
|
expiry: "Il link è valido fino al %{date}."
|
||||||
|
ignore: Se non ti aspettavi questo messaggio, puoi ignorarlo.
|
||||||
|
footer: "Match Live TV — %{email}"
|
||||||
invoice:
|
invoice:
|
||||||
subject: "Fattura %{number} — Match Live TV"
|
subject: "Fattura %{number} — Match Live TV"
|
||||||
attachment_prefix: fattura
|
attachment_prefix: fattura
|
||||||
|
|||||||
@@ -875,10 +875,56 @@ body.nav-menu-open { overflow: hidden; }
|
|||||||
margin-top: 36px;
|
margin-top: 36px;
|
||||||
padding-top: 28px;
|
padding-top: 28px;
|
||||||
border-top: 1px solid #2a2a36;
|
border-top: 1px solid #2a2a36;
|
||||||
|
scroll-margin-top: 88px;
|
||||||
}
|
}
|
||||||
.team-streaming-staff h2 { margin: 24px 0 12px; font-size: 1.1rem; }
|
.team-streaming-staff h2 { margin: 24px 0 12px; font-size: 1.1rem; }
|
||||||
.team-streaming-staff__self { margin-bottom: 20px; }
|
.team-streaming-staff__self { margin-bottom: 20px; }
|
||||||
.team-streaming-staff__self h2 { margin-top: 0; font-size: 1.05rem; }
|
.team-streaming-staff__self h2 { margin-top: 0; font-size: 1.05rem; }
|
||||||
|
.team-invite-form {
|
||||||
|
margin: 24px 0;
|
||||||
|
max-width: 560px;
|
||||||
|
scroll-margin-top: 88px;
|
||||||
|
}
|
||||||
|
.team-invite-form h2 {
|
||||||
|
margin: 0 0 8px;
|
||||||
|
font-size: 1.05rem;
|
||||||
|
}
|
||||||
|
.team-invite-form__hint {
|
||||||
|
margin: 0 0 14px;
|
||||||
|
max-width: 48rem;
|
||||||
|
line-height: 1.45;
|
||||||
|
}
|
||||||
|
.team-invite-form__fields label {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
color: #c8c8d0;
|
||||||
|
}
|
||||||
|
.team-invite-form__fields input[type="email"] {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 360px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
.team-invite-link {
|
||||||
|
margin-top: 18px;
|
||||||
|
padding-top: 16px;
|
||||||
|
border-top: 1px solid #2a2a36;
|
||||||
|
scroll-margin-top: 88px;
|
||||||
|
}
|
||||||
|
.team-invite-link__title {
|
||||||
|
margin: 0 0 8px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.team-invite-link__url {
|
||||||
|
display: block;
|
||||||
|
word-break: break-all;
|
||||||
|
background: #0a0a0e;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.team-invite-link__copy { margin-bottom: 8px; }
|
||||||
|
.team-invite-link__note { margin: 0; font-size: 0.88rem; }
|
||||||
.roster-layout--readonly { grid-template-columns: 1fr; }
|
.roster-layout--readonly { grid-template-columns: 1fr; }
|
||||||
.roster-stats {
|
.roster-stats {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# Anteprima: http://localhost:3000/rails/mailers/teams/invitation_mailer/transmission_invite
|
||||||
|
module Teams
|
||||||
|
class InvitationMailerPreview < ActionMailer::Preview
|
||||||
|
def transmission_invite
|
||||||
|
team = Team.includes(:club).order(:created_at).first
|
||||||
|
raise "Nessuna squadra in DB: esegui seed" unless team
|
||||||
|
|
||||||
|
invited_by = User.order(:created_at).first || User.new(name: "Coach Demo", email: "coach@matchlivetv.test")
|
||||||
|
invitation = TeamInvitation.new(
|
||||||
|
email: "demo.streamer@example.com",
|
||||||
|
expires_at: 7.days.from_now,
|
||||||
|
role: "member",
|
||||||
|
staff_kind: "transmission"
|
||||||
|
)
|
||||||
|
invite_url = "http://localhost:3000/join/anteprima-token-esempio"
|
||||||
|
|
||||||
|
::Teams::InvitationMailer.transmission_invite(
|
||||||
|
team: team,
|
||||||
|
invitation: invitation,
|
||||||
|
invite_url: invite_url,
|
||||||
|
invited_by: invited_by
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
require "rails_helper"
|
||||||
|
|
||||||
|
RSpec.describe Teams::InvitationMailer, type: :mailer do
|
||||||
|
let!(:club) { Club.create!(name: "Mail Club", sport: "volleyball", primary_color: "#e53935", secondary_color: "#ffffff") }
|
||||||
|
let!(:team) { club.teams.create!(name: "U16", sport: "volleyball") }
|
||||||
|
let!(:inviter) { User.create!(name: "Coach", email: "coach-mail@test.it", password: "Password123", role: "coach") }
|
||||||
|
let(:invitation) do
|
||||||
|
TeamInvitation.new(
|
||||||
|
email: "streamer@test.it",
|
||||||
|
expires_at: 7.days.from_now,
|
||||||
|
role: "member",
|
||||||
|
staff_kind: "transmission"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "invia l'invito con link e oggetto corretti" do
|
||||||
|
mail = described_class.transmission_invite(
|
||||||
|
team: team,
|
||||||
|
invitation: invitation,
|
||||||
|
invite_url: "http://www.example.com/join/token-demo",
|
||||||
|
invited_by: inviter
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(mail.to).to eq(["streamer@test.it"])
|
||||||
|
expect(mail.subject).to include("U16")
|
||||||
|
expect(mail.subject).to include("Mail Club")
|
||||||
|
expect(mail.body.encoded).to include("http://www.example.com/join/token-demo")
|
||||||
|
expect(mail.body.encoded).to include("Coach")
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -4,11 +4,11 @@ RSpec.describe "Api::V1::Invitations", type: :request do
|
|||||||
let(:club) { Club.create!(name: "FC Test", sport: "volleyball", primary_color: "#e53935", secondary_color: "#ffffff") }
|
let(:club) { Club.create!(name: "FC Test", sport: "volleyball", primary_color: "#e53935", secondary_color: "#ffffff") }
|
||||||
let(:team) { club.teams.create!(name: "Squadra A", sport: "volleyball") }
|
let(:team) { club.teams.create!(name: "Squadra A", sport: "volleyball") }
|
||||||
let(:owner) do
|
let(:owner) do
|
||||||
User.create!(email: "owner@test.it", name: "Owner", password: "password123", role: "coach").tap do |u|
|
User.create!(email: "owner@test.it", name: "Owner", password: "Password123", role: "coach").tap do |u|
|
||||||
ClubMembership.create!(user: u, club: club, role: "owner")
|
ClubMembership.create!(user: u, club: club, role: "owner")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
let(:invitee) { User.create!(email: "streamer@test.it", name: "Streamer", password: "password123", role: "coach") }
|
let(:invitee) { User.create!(email: "streamer@test.it", name: "Streamer", password: "Password123", role: "coach") }
|
||||||
let(:token) { TeamInvitation.generate_token }
|
let(:token) { TeamInvitation.generate_token }
|
||||||
let!(:invitation) do
|
let!(:invitation) do
|
||||||
team.team_invitations.create!(
|
team.team_invitations.create!(
|
||||||
@@ -31,7 +31,7 @@ RSpec.describe "Api::V1::Invitations", type: :request do
|
|||||||
|
|
||||||
describe "POST /api/v1/invitations/:token/accept" do
|
describe "POST /api/v1/invitations/:token/accept" do
|
||||||
it "accetta con email corretta" do
|
it "accetta con email corretta" do
|
||||||
post "/api/v1/auth/login", params: { email: invitee.email, password: "password123" }
|
post "/api/v1/auth/login", params: { email: invitee.email, password: "Password123" }
|
||||||
access = response.parsed_body["access_token"]
|
access = response.parsed_body["access_token"]
|
||||||
|
|
||||||
post "/api/v1/invitations/#{token}/accept",
|
post "/api/v1/invitations/#{token}/accept",
|
||||||
@@ -42,7 +42,7 @@ RSpec.describe "Api::V1::Invitations", type: :request do
|
|||||||
end
|
end
|
||||||
|
|
||||||
it "rifiuta email diversa" do
|
it "rifiuta email diversa" do
|
||||||
post "/api/v1/auth/login", params: { email: owner.email, password: "password123" }
|
post "/api/v1/auth/login", params: { email: owner.email, password: "Password123" }
|
||||||
access = response.parsed_body["access_token"]
|
access = response.parsed_body["access_token"]
|
||||||
|
|
||||||
post "/api/v1/invitations/#{token}/accept",
|
post "/api/v1/invitations/#{token}/accept",
|
||||||
|
|||||||
@@ -0,0 +1,57 @@
|
|||||||
|
require "rails_helper"
|
||||||
|
|
||||||
|
RSpec.describe "Public team transmission invite", type: :request do
|
||||||
|
let!(:coach) do
|
||||||
|
User.create!(email: "invite-owner@test.it", name: "Owner", password: "Password123", role: "coach")
|
||||||
|
end
|
||||||
|
let!(:club) do
|
||||||
|
c = Club.create!(name: "Invite Club", sport: "volleyball", primary_color: "#e53935", secondary_color: "#ffffff")
|
||||||
|
ClubMembership.create!(user: coach, club: c, role: "owner")
|
||||||
|
load Rails.root.join("db/seeds/plans.rb")
|
||||||
|
Billing::AssignPlan.call(club: c, plan_slug: "premium_light")
|
||||||
|
c
|
||||||
|
end
|
||||||
|
let!(:team) { club.teams.create!(name: "U13 Black", sport: "volleyball") }
|
||||||
|
|
||||||
|
def login!
|
||||||
|
post public_login_path, params: { email: coach.email, password: "Password123" }
|
||||||
|
end
|
||||||
|
|
||||||
|
it "mostra il form invito sulla pagina dettagli squadra" do
|
||||||
|
login!
|
||||||
|
get public_team_details_path(team)
|
||||||
|
|
||||||
|
expect(response).to have_http_status(:ok)
|
||||||
|
expect(response.body).to include("Invita un account a trasmettere")
|
||||||
|
expect(response.body).to include('id="invita-trasmissione"')
|
||||||
|
expect(response.body).to include("#responsabili-trasmissione")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "GET /teams/:id/invite reindirizza ai dettagli con ancora" do
|
||||||
|
login!
|
||||||
|
get public_team_invite_path(team)
|
||||||
|
|
||||||
|
expect(response).to redirect_to(public_team_details_path(team, anchor: "invita-trasmissione"))
|
||||||
|
end
|
||||||
|
|
||||||
|
it "genera il link, invia l'email e li mostra sui dettagli dopo il POST" do
|
||||||
|
login!
|
||||||
|
expect {
|
||||||
|
post public_team_invite_path(team), params: { email: "streamer@test.it", staff_kind: "transmission" }
|
||||||
|
}.to change { team.team_invitations.count }.by(1)
|
||||||
|
.and change { ActionMailer::Base.deliveries.size }.by(1)
|
||||||
|
|
||||||
|
expect(response).to redirect_to(public_team_details_path(team, anchor: "invito-generato"))
|
||||||
|
follow_redirect!
|
||||||
|
|
||||||
|
expect(response.body).to include("Invito inviato a streamer@test.it")
|
||||||
|
expect(response.body).to include("id=\"invito-generato\"")
|
||||||
|
expect(response.body).to include("/join/")
|
||||||
|
expect(response.body).to include("streamer@test.it")
|
||||||
|
|
||||||
|
mail = ActionMailer::Base.deliveries.last
|
||||||
|
expect(mail.to).to eq(["streamer@test.it"])
|
||||||
|
expect(mail.subject).to include("U13 Black")
|
||||||
|
expect(mail.body.encoded).to include("/join/")
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
require "rails_helper"
|
require "rails_helper"
|
||||||
|
|
||||||
RSpec.describe Teams::StaffAssignment do
|
RSpec.describe Teams::StaffAssignment do
|
||||||
let!(:owner) { User.create!(name: "Owner", email: "owner@test.com", password: "password123", role: "coach") }
|
let!(:owner) { User.create!(name: "Owner", email: "owner@test.com", password: "Password123", role: "coach") }
|
||||||
let!(:club) { Club.create!(name: "Club", sport: "volleyball", primary_color: "#e53935", secondary_color: "#ffffff") }
|
let!(:club) { Club.create!(name: "Club", sport: "volleyball", primary_color: "#e53935", secondary_color: "#ffffff") }
|
||||||
let!(:team) { club.teams.create!(name: "Team", sport: "volleyball") }
|
let!(:team) { club.teams.create!(name: "Team", sport: "volleyball") }
|
||||||
let!(:other) { User.create!(name: "Other", email: "other@test.com", password: "password123", role: "coach") }
|
let!(:other) { User.create!(name: "Other", email: "other@test.com", password: "Password123", role: "coach") }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
ClubMembership.create!(user: owner, club: club, role: "owner")
|
ClubMembership.create!(user: owner, club: club, role: "owner")
|
||||||
|
|||||||
Reference in New Issue
Block a user