1
0
Daniel Supernault 4 жил өмнө
parent
commit
fa6ecd8df1

+ 3 - 2
app/Util/Site/Config.php

@@ -8,7 +8,7 @@ use Illuminate\Support\Str;
 class Config {
 
 	public static function get() {
-		return Cache::remember('api:site:configuration:_v0', now()->addHours(30), function() {
+		return Cache::remember('api:site:configuration:_v0.1', now()->addHours(30), function() {
 			return [
 				'open_registration' => config('pixelfed.open_registration'),
 				'uploader' => [
@@ -34,7 +34,8 @@ class Config {
 				'ab' => [
 					'lc' => config('exp.lc'),
 					'rec' => config('exp.rec'),
-					'loops' => config('exp.loops')
+					'loops' => config('exp.loops'),
+					'top' => config('exp.top')
 				],
 
 				'site' => [

+ 3 - 2
config/exp.php

@@ -3,6 +3,7 @@
 return [
 
 	'lc' => env('EXP_LC', false),
-	'rec' => env('EXP_REC', false),
-	'loops' => env('EXP_LOOPS', false),
+	'rec' => false,
+	'loops' => false,
+	'top' => env('EXP_TOP', false),
 ];

+ 33 - 0
database/migrations/2021_01_15_050602_create_instance_actors_table.php

@@ -0,0 +1,33 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+class CreateInstanceActorsTable extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::create('instance_actors', function (Blueprint $table) {
+            $table->id();
+            $table->text('private_key')->nullable();
+            $table->text('public_key')->nullable();
+            $table->timestamps();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        Schema::dropIfExists('instance_actors');
+    }
+}