Преглед изворни кода

Remove the global check for minimum required credits

Jovan Jovanovic пре 3 година
родитељ
комит
7d229ec25b
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      app/Http/Controllers/ServerController.php

+ 1 - 3
app/Http/Controllers/ServerController.php

@@ -103,10 +103,8 @@ class ServerController extends Controller
                     ? Configuration::getValueByKey('MINIMUM_REQUIRED_CREDITS_TO_MAKE_SERVER', 50)
                     : $product->minimum_credits)
             ) {
-                return redirect()->route('servers.index')->with('error', "You do not have the required amount of " . CREDITS_DISPLAY_NAME . " to create a new server!");
+                return redirect()->route('servers.index')->with('error', "You do not have the required amount of " . CREDITS_DISPLAY_NAME . " to use this product!");
             }
-        } else if (Auth::user()->credits <= Configuration::getValueByKey('MINIMUM_REQUIRED_CREDITS_TO_MAKE_SERVER', 50)) {
-            return redirect()->route('servers.index')->with('error', "You do not have the required amount of " . CREDITS_DISPLAY_NAME . " to create a new server!");
         }
 
         //Required Verification for creating an server