4c42b8fe15
* main: (21 commits) squash! Remove session controller actions other than delete Remove the invitation codes for now Remove session controller actions other than delete Account.signal_account is no longer optional Remove local authentication code Drop the password column from the users table. Script to create Users for existing 37id accounts Configure Mission Control to skip tenanted authentication Script to update URLs and attachments in cards and comments Make sure seeds are creating sluggable tenants Script to rename tenants after the QB account id Update the signups tests to work with untenanted paths Update the Command classes to handle paths with account slugs Update bin/dev to point at the new tenant URLs Patch Active Storage controllers to generate slugged URLs Point Action Cable at the slugged cable endpoint Extract pieces from the tenanting initializer Patch Turbo to use the request script name Use the new AR::Tenanted convention for action cable connections Use a tenant resolver that recognizes the account slug ...
15 lines
711 B
Plaintext
15 lines
711 B
Plaintext
<div class="panel shadow center flex flex-column">
|
|
<strong class="divider txt-large margin-block-end">People on the account</strong>
|
|
<%#= render "accounts/invite" # Scheduled work in https://3.basecamp.com/2914079/buckets/37331921/todos/8746162337 %>
|
|
|
|
<div class="flex flex-column" data-controller="filter">
|
|
<div class="pad">
|
|
<input placeholder="Filter…" class="input input--transparent full-width" type="search" autocorrect="off" autocomplete="off" data-1p-ignore="true" data-filter-target="input" data-action="input->filter#filter">
|
|
</div>
|
|
|
|
<div data-filter-target="list" class="users-list">
|
|
<%= render partial: "accounts/user", collection: users %>
|
|
</div>
|
|
</div>
|
|
</div>
|