Fix saving of custom client view CSS

I noticed that I wasn’t able to change the custom CSS for the client
view. This fixes the issue.
This commit is contained in:
Joshua Dwire 2017-02-15 22:27:41 -05:00
parent fb749092b2
commit 770e3090af

View File

@ -797,6 +797,7 @@ class AccountController extends BaseController
{ {
$account = $request->user()->account; $account = $request->user()->account;
$account->fill($request->all()); $account->fill($request->all());
$account->client_view_css = $request->client_view_css;
$account->subdomain = $request->subdomain; $account->subdomain = $request->subdomain;
$account->iframe_url = $request->iframe_url; $account->iframe_url = $request->iframe_url;
$account->save(); $account->save();