v1.5.14 - Added Allow Actions (Registering)
Fixed User Pictures
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class AllowActionsSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$allowactiondata = [
|
||||
[
|
||||
'action' => 'Registering'
|
||||
]
|
||||
];
|
||||
|
||||
foreach ($allowactiondata as $data) {
|
||||
$allowaction = new \App\AllowAction();
|
||||
|
||||
$allowaction->action = $data['action'];
|
||||
|
||||
$allowaction->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user