diff --git a/app/GraphQL/Schema/Fields/List/Playlist/PlaylistDescriptionField.php b/app/GraphQL/Schema/Fields/List/Playlist/PlaylistDescriptionField.php index 93b5b7a83..d9def37d3 100644 --- a/app/GraphQL/Schema/Fields/List/Playlist/PlaylistDescriptionField.php +++ b/app/GraphQL/Schema/Fields/List/Playlist/PlaylistDescriptionField.php @@ -8,7 +8,6 @@ use App\Contracts\GraphQL\Fields\CreatableField; use App\Contracts\GraphQL\Fields\UpdatableField; use App\GraphQL\Schema\Fields\StringField; use App\Models\List\Playlist; -use App\Rules\ModerationRule; class PlaylistDescriptionField extends StringField implements CreatableField, UpdatableField { @@ -31,7 +30,6 @@ class PlaylistDescriptionField extends StringField implements CreatableField, Up 'nullable', 'string', 'max:1000', - new ModerationRule(), ]; } @@ -44,7 +42,6 @@ class PlaylistDescriptionField extends StringField implements CreatableField, Up 'nullable', 'string', 'max:1000', - new ModerationRule(), ]; } } diff --git a/app/Http/Api/Field/List/ExternalProfile/ExternalProfileNameField.php b/app/Http/Api/Field/List/ExternalProfile/ExternalProfileNameField.php index 9cb21f8eb..eda1fcbcd 100644 --- a/app/Http/Api/Field/List/ExternalProfile/ExternalProfileNameField.php +++ b/app/Http/Api/Field/List/ExternalProfile/ExternalProfileNameField.php @@ -8,7 +8,6 @@ use App\Contracts\Http\Api\Field\CreatableField; use App\Http\Api\Field\StringField; use App\Http\Api\Schema\Schema; use App\Models\List\ExternalProfile; -use App\Rules\ModerationRule; use Illuminate\Http\Request; class ExternalProfileNameField extends StringField implements CreatableField @@ -24,7 +23,6 @@ class ExternalProfileNameField extends StringField implements CreatableField 'required', 'string', 'max:192', - new ModerationRule(), ]; } } diff --git a/app/Http/Api/Field/List/Playlist/PlaylistDescriptionField.php b/app/Http/Api/Field/List/Playlist/PlaylistDescriptionField.php index b12c2fe49..67d1628e8 100644 --- a/app/Http/Api/Field/List/Playlist/PlaylistDescriptionField.php +++ b/app/Http/Api/Field/List/Playlist/PlaylistDescriptionField.php @@ -25,7 +25,6 @@ class PlaylistDescriptionField extends StringField implements CreatableField, Up 'nullable', 'string', 'max:1000', - new ModerationRule(), ]; } @@ -35,7 +34,6 @@ class PlaylistDescriptionField extends StringField implements CreatableField, Up 'nullable', 'string', 'max:1000', - new ModerationRule(), ]; } }