Skip to content

Commit 7690810

Browse files
Merge pull request #2 from boldbi/386313-BOLDBI_add_backlinks
386313 - Included utm paramter for Bold BI URL's backlink
2 parents c7126e9 + 34de4ad commit 7690810

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/gitleaks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install the report tool packages
3333
if: steps.gitleaks.outcome != 'success'
3434
run: |
35-
nuget install "Syncfusion.Email" -source "https://nexus.syncfusion.com/repository/nuget-hosted/" -version 1.1.0
35+
nuget install "Syncfusion.Email" -source "https://nexus.syncfusioninternal.com/repository/nuget-hosted/" -version 1.1.0
3636
dir $GITHUB_WORKSPACE/Syncfusion.Email.1.1.0/lib/netcoreapp3.1
3737
dotnet $GITHUB_WORKSPACE/Syncfusion.Email.1.1.0/lib/netcoreapp3.1/GitleaksReportMail.dll "citeam@syncfusion.com" "$GITHUB_REF_NAME" ${{ secrets.NETWORKCREDENTIALS }} ${{ secrets.NETWORKKEY }} "$GITHUB_WORKSPACE" "boldbi"
3838
exit 1

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ The samples require the following requirements to run.
2727
| **SiteIdentifier** | For the Bold BI Enterprise edition, it should be like `site/site1`. For Bold BI Cloud, it should be an empty string. |
2828
| **Environment** | Your Bold BI application environment. (If Cloud, you should use `cloud`, if Enterprise, you should use `onpremise`). |
2929
| **DashboardId** | Set the item id of the dashboard to embed from BI server. |
30-
| **EmbedSecret** | Get your EmbedSecret key from the Embed tab by enabling the `Enable embed authentication` on the Administration page [link](https://help.boldbi.com/embedded-bi/site-administration/embed-settings/). |
30+
| **EmbedSecret** | Get your EmbedSecret key from the Embed tab by enabling the `Enable embed authentication` on the Administration page [link](https://help.boldbi.com/embedded-bi/site-administration/embed-settings/?utm_source=github&utm_medium=backlinks). |
3131
| **UserEmail** | UserEmail of the Admin in your Bold BI, which would be used to get the dashboard list. |
3232

33-
Please refer to the [help documentation](https://help.boldbi.com/embedded-bi/javascript-based/samples/v3.3.40-or-later/other-platform-samples/#java-servlet-sample-to-embed-dashboard) to know how to run the sample.
33+
Please refer to the [help documentation](https://help.boldbi.com/embedded-bi/javascript-based/samples/v3.3.40-or-later/other-platform-samples/#java-servlet-sample-to-embed-dashboard?utm_source=github&utm_medium=backlinks) to know how to run the sample.
3434

3535
## Online Demos
3636

37-
Look at the Bold BI Embedding sample to live demo [here](https://samples.boldbi.com/embed).
37+
Look at the Bold BI Embedding sample to live demo [here](https://samples.boldbi.com/embed?utm_source=github&utm_medium=backlinks).
3838

3939
## Documentation
4040

41-
A complete Bold BI Embedding documentation can be found on [Bold BI Embedding Help](https://help.boldbi.com/embedded-bi/javascript-based/).
41+
A complete Bold BI Embedding documentation can be found on [Bold BI Embedding Help](https://help.boldbi.com/embedded-bi/javascript-based/?utm_source=github&utm_medium=backlinks).

src/com/javapapers/sample/ajax/BoldBI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class BoldBI extends HttpServlet {
3030
* A simple HelloWorld Servlet
3131
*/
3232
public static String UserEmail = "admin@domain.com";
33-
public static String EmbedSecret = "MvAiyOHPyppihvV22RpQDkMy8bQC10hL";
33+
public static String EmbedSecret = "enter your embed secret";
3434

3535
public void doPost(HttpServletRequest req, HttpServletResponse res)
3636
throws java.io.IOException {

0 commit comments

Comments
 (0)