about summary refs log tree commit diff
path: root/MatrixUtils.Web/Shared/RoomListComponents/RoomListPolicyRoom.razor
blob: 7afdc8c1194651f52040c9840030ed3509f5e8da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
@using LibMatrix.RoomTypes
<LinkButton href="@($"/Rooms/{Room.RoomId}/Policies")">Manage policies</LinkButton>

@code {

    [Parameter]
    public GenericRoom Room { get; set; }

    protected override async Task OnInitializedAsync() {
        await base.OnInitializedAsync();
    }

}