discourse/app/controllers/new_invite_controller.rb
Osama Sayegh 19672faba6
FEATURE: Add invite link to the sidebar (#29448)
This commit adds a new "Invite" link to the sidebar for all users who can invite to the site. Clicking the link opens the invite modal without changing the current route the user is on. Admins can customize the new link or remove it entirely if they wish by editing the sidebar section.

Internal topic: t/129752.
2024-10-30 05:31:14 +03:00

7 lines
103 B
Ruby

# frozen_string_literal: true
class NewInviteController < ApplicationController
def index
end
end