Update AccountInterstitialController, add autospam type

pull/2483/head
Daniel Supernault 5 years ago
parent 401512c929
commit c67f0c5784
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -20,12 +20,14 @@ class AccountInterstitialController extends Controller
->interstitials()
->whereNull('read_at')
->first();
if(!$interstitial) {
$user = $request->user();
$user->has_interstitial = false;
$user->save();
return redirect('/');
}
$meta = json_decode($interstitial->meta);
$view = $interstitial->view;
return view($view, compact('interstitial', 'meta'));
@ -35,7 +37,7 @@ class AccountInterstitialController extends Controller
{
$this->validate($request, [
'id' => 'required',
'type' => 'required|in:post.cw,post.removed,post.unlist',
'type' => 'required|in:post.cw,post.removed,post.unlist,post.autospam',
'action' => 'required|in:appeal,confirm',
'appeal_message' => 'nullable|max:500'
]);

Loading…
Cancel
Save