Move the power level event schema to where it was
parent
ef7570e62d
commit
7d14309b63
@ -1,56 +0,0 @@
|
|||||||
# Copyright 2018 New Vector Ltd
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
properties:
|
|
||||||
ban:
|
|
||||||
description: The level required to ban a user. Defaults to 50 if unspecified.
|
|
||||||
type: number
|
|
||||||
events:
|
|
||||||
additionalProperties:
|
|
||||||
type: number
|
|
||||||
description: The level required to send specific event types. This is a mapping from event type to power level required.
|
|
||||||
title: Event power levels
|
|
||||||
type: object
|
|
||||||
events_default:
|
|
||||||
description: |-
|
|
||||||
The default level required to send message events. Can be
|
|
||||||
overridden by the ``events`` key. Defaults to 0 if unspecified.
|
|
||||||
type: number
|
|
||||||
invite:
|
|
||||||
description: The level required to invite a user. Defaults to 50 if unspecified.
|
|
||||||
type: number
|
|
||||||
kick:
|
|
||||||
description: The level required to kick a user. Defaults to 50 if unspecified.
|
|
||||||
type: number
|
|
||||||
redact:
|
|
||||||
description: The level required to redact an event. Defaults to 50 if unspecified.
|
|
||||||
type: number
|
|
||||||
state_default:
|
|
||||||
description: |-
|
|
||||||
The default level required to send state events. Can be overridden
|
|
||||||
by the ``events`` key. Defaults to 50 if unspecified, but 0 if
|
|
||||||
there is no ``m.room.power_levels`` event at all.
|
|
||||||
type: number
|
|
||||||
users:
|
|
||||||
additionalProperties:
|
|
||||||
type: number
|
|
||||||
description: The power levels for specific users. This is a mapping from ``user_id`` to power level for that user.
|
|
||||||
title: User power levels
|
|
||||||
type: object
|
|
||||||
users_default:
|
|
||||||
description: |-
|
|
||||||
The default power level for every user in the room, unless their
|
|
||||||
``user_id`` is mentioned in the ``users`` key. Defaults to 0 if
|
|
||||||
unspecified.
|
|
||||||
type: number
|
|
||||||
type: object
|
|
||||||
Loading…
Reference in New Issue