-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from splunk-soar-connectors/next
Merging next to main for release 1.1.2
- Loading branch information
Showing
5 changed files
with
72 additions
and
63 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[comment]: # " File: README.md" | ||
[comment]: # " Copyright (c) Mhike, 2022" | ||
[comment]: # " Licensed under the Apache License, Version 2.0 (the 'License');" | ||
[comment]: # " you may not use this file except in compliance with the License." | ||
[comment]: # " You may obtain a copy of the License at" | ||
[comment]: # " http://www.apache.org/licenses/LICENSE-2.0" | ||
[comment]: # " Unless required by applicable law or agreed to in writing, software distributed under" | ||
[comment]: # " the License is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND," | ||
[comment]: # " either express or implied. See the License for the specific language governing permissions" | ||
[comment]: # " and limitations under the License." | ||
[comment]: # "" | ||
---------------------------------------------------------------------------------------------------- | ||
|
||
---------------------------------------------------------------------------------------------------- | ||
|
||
This app generates a widget with links. Each link will open in a new tab. | ||
|
||
When adding links, they can either be appended to existing links with the append boolean or the new | ||
links can overwrite the old links. | ||
|
||
You can either add a single link and description at a time or you can use json to add multiple links | ||
at once. | ||
|
||
For a single link, you can add the url in the url field and the link text in the description | ||
field. | ||
|
||
For multiple links at once, you can pass in a list of dictionaries in this format: | ||
|
||
[ | ||
{ | ||
"descriptor":"Google Search", | ||
"url":"https://www.google.com" | ||
}, | ||
{ | ||
"descriptor":"Splunk Documentation", | ||
"url":"https://docs.splunk.com/Documentation" | ||
}, | ||
{ | ||
"descriptor":"VirusTotal", | ||
"url":"https://www.virustotal.com" | ||
} | ||
] | ||
|
||
Make sure the url begins with http(s). If you don't, your links won't open in a new window properly. | ||
|
||
---------------------------------------------------------------------------------------------------- | ||
|
||
---------------------------------------------------------------------------------------------------- |
This file was deleted.
Oops, something went wrong.