Skip to content

Commit

Permalink
v13.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Dec 18, 2023
1 parent f885475 commit 57f4d8d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@
filePath = "../Sources/ObjCSources/GleapCore.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "487"
endingLineNumber = "487"
startingLineNumber = "496"
endingLineNumber = "496"
landmarkName = "-startFeedbackFlow:withOptions:"
landmarkType = "7">
</BreakpointContent>
Expand Down Expand Up @@ -382,8 +382,8 @@
filePath = "../Sources/ObjCSources/GleapCore.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "458"
endingLineNumber = "458"
startingLineNumber = "467"
endingLineNumber = "467"
landmarkName = "-startFeedbackFlow:withOptions:"
landmarkType = "7">
</BreakpointContent>
Expand Down
7 changes: 7 additions & 0 deletions Sources/ObjCSources/GleapCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,13 @@ typedef enum surveyFormat { SURVEY, SURVEY_FULL } GleapSurveyFormat;
*/
+ (void)close;

/**
* Starts a classic form flow.
* @author Gleap
*
*/
+ (Boolean)startClassicForm:(NSString * _Nullable)formId showBackButton:(BOOL)showBackButton;

/**
* Start a feedback flow.
* @author Gleap
Expand Down
11 changes: 10 additions & 1 deletion Sources/ObjCSources/GleapCore.m
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,16 @@ + (void)close {
}

/**
Starts the specified feedback flow.
* Starts a classic form flow.
*/
+ (Boolean)startClassicForm:(NSString * _Nullable)formId showBackButton:(BOOL)showBackButton {
return [[Gleap sharedInstance] startFeedbackFlow: formId withOptions: @{
@"hideBackButton": @(!showBackButton)
}];
}

/**
* Starts the specified feedback flow.
*/
+ (Boolean)startFeedbackFlow:(NSString * _Nullable)feedbackFlow showBackButton:(BOOL)showBackButton {
return [[Gleap sharedInstance] startFeedbackFlow: feedbackFlow withOptions: @{
Expand Down

0 comments on commit 57f4d8d

Please sign in to comment.