Update v1.0.6.4

This commit is contained in:
sujitprasad
2016-02-24 20:38:42 +05:30
parent d39ef2985d
commit 4270cbcfb3
29 changed files with 700 additions and 198 deletions

View File

@@ -513,4 +513,16 @@ class SettingsController extends Controller
return redirect()->back()->with('success', 'Successfully Deleted');
}
/**
* Generate Api key.
*
* @return type json
*/
public function generateApiKey()
{
$key = str_random(32);
return $key;
}
}