mirror of https://github.com/Chocobozzz/PeerTube
Merge branch 'develop' into release/v1.2.0
commit
d452048127
|
@ -133,7 +133,7 @@ You can also join the cheerful bunch that makes our community:
|
||||||
|
|
||||||
* Chat<a name="contact"></a>:
|
* Chat<a name="contact"></a>:
|
||||||
* IRC : **[#peertube on chat.freenode.net:6697](https://kiwiirc.com/client/irc.freenode.net/#peertube)**
|
* IRC : **[#peertube on chat.freenode.net:6697](https://kiwiirc.com/client/irc.freenode.net/#peertube)**
|
||||||
* Matrix (bridged on the IRC channel) : **[#peertube:matrix.org](https://matrix.to/#/#peertube:matrix.org)**
|
* Matrix (bridged on IRC and [Discord](https://discord.gg/wj8DDUT)) : **[#peertube:matrix.org](https://matrix.to/#/#peertube:matrix.org)**
|
||||||
* Forum:
|
* Forum:
|
||||||
* Framacolibri: [https://framacolibri.org/c/peertube](https://framacolibri.org/c/peertube)
|
* Framacolibri: [https://framacolibri.org/c/peertube](https://framacolibri.org/c/peertube)
|
||||||
|
|
||||||
|
|
|
@ -40,10 +40,10 @@
|
||||||
<td class="action-cell">
|
<td class="action-cell">
|
||||||
<ng-container *ngIf="videoChangeOwnership.status === 'WAITING'">
|
<ng-container *ngIf="videoChangeOwnership.status === 'WAITING'">
|
||||||
<my-button i18n label="Accept"
|
<my-button i18n label="Accept"
|
||||||
icon="icon-tick"
|
icon="tick"
|
||||||
(click)="openAcceptModal(videoChangeOwnership)"></my-button>
|
(click)="openAcceptModal(videoChangeOwnership)"></my-button>
|
||||||
<my-button i18n label="Refuse"
|
<my-button i18n label="Refuse"
|
||||||
icon="icon-cross"
|
icon="cross"
|
||||||
(click)="refuse(videoChangeOwnership)">Refuse</my-button>
|
(click)="refuse(videoChangeOwnership)">Refuse</my-button>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -19,6 +19,7 @@ const icons = {
|
||||||
'delete': require('../../../assets/images/global/delete.html'),
|
'delete': require('../../../assets/images/global/delete.html'),
|
||||||
'cross': require('../../../assets/images/global/cross.html'),
|
'cross': require('../../../assets/images/global/cross.html'),
|
||||||
'validate': require('../../../assets/images/global/validate.html'),
|
'validate': require('../../../assets/images/global/validate.html'),
|
||||||
|
'tick': require('../../../assets/images/global/tick.html'),
|
||||||
'dislike': require('../../../assets/images/video/dislike.html'),
|
'dislike': require('../../../assets/images/video/dislike.html'),
|
||||||
'heart': require('../../../assets/images/video/heart.html'),
|
'heart': require('../../../assets/images/video/heart.html'),
|
||||||
'like': require('../../../assets/images/video/like.html'),
|
'like': require('../../../assets/images/video/like.html'),
|
||||||
|
|
|
@ -10,7 +10,7 @@ import {
|
||||||
} from '../../../../shared/utils/requests/check-api-params'
|
} from '../../../../shared/utils/requests/check-api-params'
|
||||||
import { getAccount } from '../../../../shared/utils/users/accounts'
|
import { getAccount } from '../../../../shared/utils/users/accounts'
|
||||||
|
|
||||||
describe('Test users API validators', function () {
|
describe('Test accounts API validators', function () {
|
||||||
const path = '/api/v1/accounts/'
|
const path = '/api/v1/accounts/'
|
||||||
let server: ServerInfo
|
let server: ServerInfo
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue