mirror of https://github.com/Chocobozzz/PeerTube
Add missing password field to update user api doc
parent
a5a79d1542
commit
5097cbda4a
|
@ -96,7 +96,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.vjs-play-control {
|
.vjs-play-control {
|
||||||
@include disable-outline;
|
@include disable-outline;
|
||||||
|
|
||||||
|
@ -281,6 +280,11 @@
|
||||||
max-width: $control-bar-icon-size;
|
max-width: $control-bar-icon-size;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: $control-bar-volume-slider-height;
|
max-height: $control-bar-volume-slider-height;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
// Remove circle
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
|
|
|
@ -20,10 +20,6 @@ body {
|
||||||
font-size: $font-size;
|
font-size: $font-size;
|
||||||
color: pvar(--embedForegroundColor);
|
color: pvar(--embedForegroundColor);
|
||||||
|
|
||||||
.vjs-volume-level::before {
|
|
||||||
content: ''; /* Remove Circle From Progress Bar */
|
|
||||||
}
|
|
||||||
|
|
||||||
.vjs-audio-button {
|
.vjs-audio-button {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -100,7 +96,6 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.vjs-poster {
|
.vjs-poster {
|
||||||
outline: none; /* Remove Blue Outline on Click*/
|
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6757,6 +6757,8 @@ components:
|
||||||
$ref: '#/components/schemas/UserRole'
|
$ref: '#/components/schemas/UserRole'
|
||||||
adminFlags:
|
adminFlags:
|
||||||
$ref: '#/components/schemas/UserAdminFlags'
|
$ref: '#/components/schemas/UserAdminFlags'
|
||||||
|
password:
|
||||||
|
$ref: '#/components/schemas/password'
|
||||||
UpdateMe:
|
UpdateMe:
|
||||||
# see shared/models/users/user-update-me.model.ts:
|
# see shared/models/users/user-update-me.model.ts:
|
||||||
properties:
|
properties:
|
||||||
|
@ -7228,13 +7230,13 @@ components:
|
||||||
- `13` NEW_INSTANCE_FOLLOWER
|
- `13` NEW_INSTANCE_FOLLOWER
|
||||||
|
|
||||||
- `14` AUTO_INSTANCE_FOLLOWING
|
- `14` AUTO_INSTANCE_FOLLOWING
|
||||||
|
|
||||||
- `15` ABUSE_STATE_CHANGE
|
- `15` ABUSE_STATE_CHANGE
|
||||||
|
|
||||||
- `16` ABUSE_NEW_MESSAGE
|
- `16` ABUSE_NEW_MESSAGE
|
||||||
|
|
||||||
- `17` NEW_PLUGIN_VERSION
|
- `17` NEW_PLUGIN_VERSION
|
||||||
|
|
||||||
- `18` NEW_PEERTUBE_VERSION
|
- `18` NEW_PEERTUBE_VERSION
|
||||||
read:
|
read:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
Loading…
Reference in New Issue