Skip to content

Commit

Permalink
fix(installer): include the installer pages in the manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturMoczulski committed Oct 28, 2019
1 parent 29877c3 commit f97bbe5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 0 additions & 4 deletions force-app/main/default/classes/Config.cls
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
public with sharing class Config {
public Config(String accessToken, String environment) {
if (accessToken == null || accessToken == '') {
throw new RollbarNotInitializedException('Invalid access token');
}

this.accessToken = accessToken;
this.environment = environment;
this.endpoint = 'https://api.rollbar.com/api/1/item/';
Expand Down
8 changes: 7 additions & 1 deletion manifest/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>Rollbar for Apex</fullName>
<version>45.0</version>
<versionNumber>1.2</versionNumber>
<types>
<name>ApexClass</name>

Expand Down Expand Up @@ -37,4 +37,10 @@
<members>RemoteSiteHelper</members>
<name>ApexComponent</name>
</types>

<types>
<members>RollbarConfigure</members>
<members>RollbarInstallationCheck</members>
<name>ApexPage</name>
</types>
</Package>

0 comments on commit f97bbe5

Please sign in to comment.