-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
91 changed files
with
1,738 additions
and
628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Release Drafter | |
on: | ||
push: | ||
branches: | ||
- develop | ||
- release/* | ||
|
||
jobs: | ||
update_release_draft: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.36.1 | ||
0.37.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 10 additions & 2 deletions
12
...rces/facebook/connector/src/main/java/co/airy/core/sources/facebook/api/ApiException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
package co.airy.core.sources.facebook.api; | ||
|
||
import lombok.Getter; | ||
|
||
public class ApiException extends RuntimeException { | ||
public ApiException(String msg) { | ||
super(msg); | ||
@Getter | ||
private String errorPayload; | ||
public ApiException(String message) { | ||
super(message); | ||
} | ||
public ApiException(String message, String errorPayload) { | ||
super(message); | ||
this.errorPayload = errorPayload; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...connector/src/main/java/co/airy/core/sources/facebook/api/model/FaceBookMetadataKeys.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package co.airy.core.sources.facebook.api.model; | ||
|
||
|
||
public class FaceBookMetadataKeys { | ||
public static class ChannelKeys { | ||
public static final String PAGE_ID = "page_id"; | ||
public static final String PAGE_TOKEN = "page_token"; | ||
public static final String ACCOUNT_ID = "account_id"; | ||
} | ||
} |
Oops, something went wrong.