Skip to content

Commit

Permalink
Merge pull request #136 from uasoft-indonesia/develop
Browse files Browse the repository at this point in the history
Merge develop to main
  • Loading branch information
rizkiheryandi authored Jun 3, 2021
2 parents 77216d0 + 20231ec commit aa7f228
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Controllers/BadasoDashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ public function verifyLicense()
$license = env('BADASO_LICENSE_KEY');
if (is_null($license)) {
return ApiResponse::paymentRequired('BADASO_LICENSE_KEY not found');
} elseif ($license == '') {
return ApiResponse::paymentRequired('BADASO_LICENSE_KEY License Empty');
} else {
// Call Badaso Dashboard API here
try {
Expand Down
1 change: 1 addition & 0 deletions src/resources/js/pages/auth/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export default {
this.$store.commit("badaso/SET_GLOBAL_STATE", {
key : 'keyIssue',
value : {
...error,
invalid : true,
},
});
Expand Down

0 comments on commit aa7f228

Please sign in to comment.