このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/routes/view/peertube.php

8 行
230 B
PHP
Raw 通常表示 履歴

<?php
Route::group(['prefix' => 'peertube'], function () {
2021-12-15 12:53:09 +09:00
Route::any('/a/{id}', 'Peertube\Account@index');
2021-12-15 18:43:03 +09:00
Route::any('/c/{id}/{cat?}/{page?}', 'Peertube\Channel@index');
Route::any('/w/{id}', 'Peertube\Watch@index');
});