mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
⚡ Add query parameter to operation issue:getAll (Sentry.io) (#1560)
This commit is contained in:
parent
9cec2a73c7
commit
538d34510d
|
@ -171,6 +171,13 @@ export const issueFields = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Query',
|
||||||
|
name: 'query',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'An optional Sentry structured search query. If not provided an implied "is:unresolved" is assumed. Info <a href="https://docs.sentry.io/product/sentry-basics/search/" target="_blank">here</a>.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Stats Period',
|
displayName: 'Stats Period',
|
||||||
name: 'statsPeriod',
|
name: 'statsPeriod',
|
||||||
|
|
|
@ -56,14 +56,14 @@ export class SentryIo implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'Sentry.io',
|
displayName: 'Sentry.io',
|
||||||
name: 'sentryIo',
|
name: 'sentryIo',
|
||||||
icon: 'file:sentryio.png',
|
icon: 'file:sentryio.svg',
|
||||||
group: ['output'],
|
group: ['output'],
|
||||||
version: 1,
|
version: 1,
|
||||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
description: 'Consume Sentry.io API',
|
description: 'Consume Sentry.io API',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Sentry.io',
|
name: 'Sentry.io',
|
||||||
color: '#000000',
|
color: '#362d59',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB |
1
packages/nodes-base/nodes/SentryIo/sentryio.svg
Normal file
1
packages/nodes-base/nodes/SentryIo/sentryio.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg class="css-15xgryy e10nushx5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 44" width="400" height="352" style=""><path d="M29,2.26a4.67,4.67,0,0,0-8,0L14.42,13.53A32.21,32.21,0,0,1,32.17,40.19H27.55A27.68,27.68,0,0,0,12.09,17.47L6,28a15.92,15.92,0,0,1,9.23,12.17H4.62A.76.76,0,0,1,4,39.06l2.94-5a10.74,10.74,0,0,0-3.36-1.9l-2.91,5a4.54,4.54,0,0,0,1.69,6.24A4.66,4.66,0,0,0,4.62,44H19.15a19.4,19.4,0,0,0-8-17.31l2.31-4A23.87,23.87,0,0,1,23.76,44H36.07a35.88,35.88,0,0,0-16.41-31.8l4.67-8a.77.77,0,0,1,1.05-.27c.53.29,20.29,34.77,20.66,35.17a.76.76,0,0,1-.68,1.13H40.6q.09,1.91,0,3.81h4.78A4.59,4.59,0,0,0,50,39.43a4.49,4.49,0,0,0-.62-2.28Z" fill="#362d59"></path></svg>
|
After Width: | Height: | Size: 679 B |
Loading…
Reference in a new issue