Small Things to Sync (#796)
This commit is contained in:
commit
67d4603676
3 changed files with 11 additions and 9 deletions
12
README.md
12
README.md
|
@ -22,8 +22,8 @@
|
|||

|
||||
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
   [](https://crowdin.com/project/controlpanelgg)   
|
||||
## About
|
||||
|
||||
|
@ -31,15 +31,15 @@ ControlPanel's Dashboard is a dashboard application designed to offer clients a
|
|||
|
||||
This dashboard offers an easy to use and free billing solution for all starting and experienced hosting providers. This dashboard has many customisation options and added discord Oauth verification to offer a solid link between your discord server and your dashboard. You can check our [Demo here](https://demo.controlpanel.gg "Demo").
|
||||
|
||||
### [Installation](https://controlpanel.gg/docs/intro "Installation")
|
||||
### [Installation](https://ctrlpanel.gg/docs/intro "Installation")
|
||||
|
||||
### [Updating](https://controlpanel.gg/docs/Installation/updating "Updating")
|
||||
### [Updating](https://ctrlpanel.gg/docs/Installation/updating "Updating")
|
||||
|
||||
### [Discord](https://discord.gg/4Y6HjD2uyU "Discord")
|
||||
|
||||
### [Contributing](https://controlpanel.gg/docs/Contributing/contributing "Contributing")
|
||||
### [Contributing](https://ctrlpanel.gg/docs/Contributing/contributing "Contributing")
|
||||
|
||||
### [Donating](https://controlpanel.gg/docs/Contributing/donating "Donating")
|
||||
### [Donating](https://ctrlpanel.gg/docs/Contributing/donating "Donating")
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ class HomeController extends Controller
|
|||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/*
|
||||
* TODO: This is commented due to the fact the market is a bad dependency, will be changed later.
|
||||
public function callHome()
|
||||
{
|
||||
if (Storage::exists('callHome')) {
|
||||
|
@ -36,7 +38,7 @@ class HomeController extends Controller
|
|||
'id' => Hash::make(URL::current()),
|
||||
]);
|
||||
Storage::put('callHome', 'This is only used to count the installations of cpgg.');
|
||||
}
|
||||
}*/
|
||||
|
||||
/**
|
||||
* @description Get the Background Color for the Days-Left-Box in HomeView
|
||||
|
@ -107,7 +109,7 @@ class HomeController extends Controller
|
|||
$unit = $daysLeft < 1 ? ($hoursLeft < 1 ? null : __('hours')) : __('days');
|
||||
}
|
||||
|
||||
$this->callhome();
|
||||
//$this->callhome(); TODO: Same as the function
|
||||
|
||||
// RETURN ALL VALUES
|
||||
return view('home')->with([
|
||||
|
|
|
@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Facade;
|
|||
|
||||
return [
|
||||
|
||||
'version' => '0.9.3',
|
||||
'version' => '0.9.4',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue