From f59b2e1c9852302adf59bacd715fedf5ce4143a8 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 1 Dec 2016 21:46:10 +0200 Subject: [PATCH] Show Zapier to self hosters --- resources/views/accounts/api_tokens.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/accounts/api_tokens.blade.php b/resources/views/accounts/api_tokens.blade.php index fb8fb5f23429..608847f969ff 100644 --- a/resources/views/accounts/api_tokens.blade.php +++ b/resources/views/accounts/api_tokens.blade.php @@ -6,8 +6,8 @@
{!! Button::normal(trans('texts.documentation'))->asLinkTo(NINJA_WEB_URL.'/api-documentation/')->withAttributes(['target' => '_blank'])->appendIcon(Icon::create('info-sign')) !!} - @if (Utils::isNinja() && !Utils::isReseller()) - {!! Button::normal(trans('texts.zapier'))->asLinkTo(ZAPIER_URL)->withAttributes(['target' => '_blank']) !!} + @if (!Utils::isReseller()) + {!! Button::normal(trans('texts.zapier'))->asLinkTo(ZAPIER_URL)->withAttributes(['target' => '_blank'])->appendIcon(Icon::create('globe')) !!} @endif @if (Utils::hasFeature(FEATURE_API)) {!! Button::primary(trans('texts.add_token'))->asLinkTo(URL::to('/tokens/create'))->appendIcon(Icon::create('plus-sign')) !!} @@ -35,7 +35,7 @@ - @if (Utils::isNinja() && !Utils::isReseller()) + @if (!Utils::isReseller())

 

@endif