id
stringlengths 32
32
| text
stringlengths 0
895k
| name
stringlengths 0
33k
| domain
stringlengths 5
44
| bucket
stringclasses 19
values | answers
list |
---|---|---|---|---|---|
5b3489e9e346c58a590a798078709b3e | i am trying to add the condition for web-item using jira expression. i created the app property with value as json as below:
therequesturl = ‘/rest/atlassian-connect/1/addons/{my-addon-key}/properties/conditions’
data: ‘{ “for-users”: “true”, “for-admins”: “true” }’
for web-item condition as b… | how do i write jira expression on web-item condition? | atlassian.com | 2021.17 | [
{
"text": ".for-users is causing a syntax error, use computed member access instead, like this: app.properties[‘conditions’]['for-users']",
"name": "",
"is_accepted": true
}
] |
4fa427efa89dad29dd2d6449addccc89 | <https://developer.atlassian.com/cloud/jira/platform/modules/issue-background-script/>
i’m trying to get this to work but i’m getting an error. jira add-on iframe timed out for add-on
are background scripts disabled in developer instances? | issue background script not working for developer instance in new issue view | atlassian.com | 2020.34 | [
{
"text": "hi [@willbender](/u/willbender),\n\nthe resource identified by the url field should be one that serves html. this html must load all.js. here’s an example:\n\n<!doctype html>\n\n<html lang=\"en\">\n\n<head>\n\n<script src=\"https://connect-cdn.atl-paas.net/all.js\"></script>\n\n<script src=\"./main.js\" defer></script>…",
"name": "",
"is_accepted": true
}
] |
b72ff21404835444aad66f207aa332cd | hello there - does anyone know with the recent acquisition of mindville by atlassian if there are any plans to add the ability to have a dev instance of insight attached to our dev instances of jsm/jira etc? | mindville insight developer instance | atlassian.com | 2021.25 | [
{
"text": "hi [@andyhockenhull](/u/andyhockenhull),\n\nwhen creating a dev site ([go.atlassian.com/cloud-dev](http://go.atlassian.com/cloud-dev)), you’ll be able to gain access to jira insight when using a premium or enterprise plan.\n\nin the dev site i use for testing, once i’ve changed the plan to premium in the billing area for the “jira service management” subscript…",
"name": "",
"is_accepted": true
}
] |
efcd2bffd1540789d8b7dd3df671d66d | simply, how do we ensure that the values of a custom field are current when running on a job thread via the customfieldmanager?
less simply, we are running a job in another thread to disconnect processing from the eventlistener thread. we notice that the value of a custom field differs when accesse… | custom field thread-local cache problem | atlassian.com | 2021.39 | [
{
"text": "i know it has been 4 years since you posted this question, but this is my solution.\n\nplease use [jirathreadlocalutil](https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/util/thread/jirathreadlocalutil.html) to solve this problem:\n\njirathreadlocalutil.precall();\n\ntry {\n\n// do your runnable code here\n\n} finally {\n\njirathreadlocalutil.postcall(log);\n\n}\n\nnote that you must place everything whi…",
"name": "",
"is_accepted": true
}
] |
d74b877a1f0a4233a29a9fb2269c02f2 | <https://developer.atlassian.com/cloud/trello/rest/#api-checklists-id-checkitems-idcheckitem-put>
this endpoint isn’t working. i’ve also tried:
put 1/cards/{id}/checklists/{idchecklist}/checkitems/{idcheckitem} (this has worked in the past)
put 1/cards/{id}/checkitems/{idcheckitem}
i always get … | updating check items isn't working | atlassian.com | 2021.10 | [
{
"text": "i finally managed to get the one with the card, checklist, and checkitem working, but note the difference:\n\nput 1/cards/{id}/checklists/{idchecklist}/checkitems/{idcheckitem}\n\nput 1/cards/{id}/checklist/{idchecklist}/checkitem/{idcheckitem}\n\nchecklist not checklists\n\ncheckitem not checkitems\n\nthis ap…",
"name": "",
"is_accepted": true
}
] |
3b09c5cfd79bf3bd6f4a6e9f0ed8424c | hello i am new to the jira development group and have been building a v2 plugin and will be looking to go live fairly soon. my question is how backwards compatible should i make a new plugin? i am using some of the newer features in the apis and have it compiling and running against jira 7.2 and upw… | what jira versions to support with a new v2 plugin? | atlassian.com | 2021.17 | [
{
"text": "i would ditch ie over edge and wait for anyone to complain. keep in mind that atlassian has a far larger user base to cater. but in general: if you use atlaskit (react) and don’t do anything to fancy yourself in terms of client-side scripting you should be fine.",
"name": "",
"is_accepted": true
}
] |
f5aa17b1d8d520b666096333948104fb | hello.
i’m trying to execute a query like following with active objects (entry from jira logs) :
/rest/sentiment/1.0/results 8 ms "select message,alert,created\_date,project\_key,id,score,user\_key,magnitude,ignored,comment\_id from ao\_5bb1c1\_sare where project\_key like ? and created\_date > ? and igno… | activity objects library throws syntax error during "find" query with mysql database | atlassian.com | 2020.29 | [
{
"text": "figured it out. maybe someone will find this useful.\n\nturned out the problem was mysql converting boolean to tinyint which resulted in query containing “is 0” which is invalid. the solution was to change “is” to “=” while generating the query string.",
"name": "",
"is_accepted": true
}
] |
ac220207d839535d5178eadf456c4b3e | hi!
i’m currently working on creating forge custom field types.
my goal is to create a custom field type that overrides the default date picker.
in the docs <https://developer.atlassian.com/platform/forge/manifest-reference/modules/#jira-custom-field-type--beta-> there are only 4 types
string
num… | extend forge custom field type types | atlassian.com | 2021.43 | [
{
"text": "hello [@belokurbohdan](/u/belokurbohdan),\n\nthe datetime type is still in development. it might work, but its behaviour is undefined until it’s officially released, and may change at any time without notice (or even stop working altogether). because of that it’s generally not a good idea to use undocumented features.\n\nw…",
"name": "",
"is_accepted": true
}
] |
4923e3c4b3920e24689f5deb226a2d0c | i’m trying to access a user’s displayname using the endpoint which according to the docs requires only the read scope, which appears in my descriptor.
here’s my route:
app.get('/test', addon.checkvalidtoken(), function(req, res){
console.log("test called");
var httpclient = addon.h… | can't make rest calls to jira using atlassian connect express | atlassian.com | 2021.17 | [
{
"text": "after digging around, i found the problem being that the addon key was different when env=production and env=debug.\n\nlooks like i was the killer, kids, let this be a lesson that messing with the add-on key will allow all of your inbound requests to authenticate if they were registered against the or…",
"name": "",
"is_accepted": true
}
] |
cc480aad1f4510333d9c034ccc9e643c | hello everyone, i am having a problem with the modal for custom ui, when i perform the process to open the modal, in theory only the modal resource should be rendered but so does the background.
const openmodal = (data = {}) => {
const modal = new modal();
modal.context = {
… | modal custom ui | atlassian.com | 2021.43 | [
{
"text": "we’ve released a fix to production. please let me know if you are still facing the issue.\n\nsorry for the disruption to usability for your apps that this caused. after any incident like this, we always take the opportunity to reflect on what the root causes that resulted in an incident like this were…",
"name": "",
"is_accepted": true
}
] |
24ed597b3a45a1a4dcd44dec67ab858b | hi design team,
a while back the source of truth for the atlassian design guidelines was atlaskit. it was said to be the most up-to-date version of the adg.
a lot has changed since then. content on the [atlassian design website](https://atlassian.design/) has updated. [atlaskit](https://atlaskit.atlassian.com/) has evolved. and the [adg sketch libraries](https://atlassian.design/guidelines/product/resources/web-product-gui-pack) were in… | adg source of truth | atlassian.com | 2020.05 | [
{
"text": "hi maarten,\n\nthanks for your question. yes, a lot has changed since, and we are working to improve the guidelines and bring alignment across the design system outputs (adg, ak, sketch libraries) and more. please continue to treat atlaskit as the source of truth.\n\ncheers!",
"name": "",
"is_accepted": true
}
] |
5536e810a66d1645e3aac2ff4141711e | there have been various posts on this forum about the rollout of the new jira issue view, but i’d like some help to understand the implications for my particular situation, please.
one of our biggest cloud customers contacted us yesterday, complaining that our add-on does not work in the new jira i… | expectations concerning rollout of new jira issue view | atlassian.com | 2021.17 | [
{
"text": "hi david,\n\nyou’re correct that we inadvertently moved some jira sites to the new issue view even though they have marketplace apps installed. we’re hoping to start enabling marketplace app support for those sites first, starting monday (sydney time). from that point they should be able to see apps t…",
"name": "",
"is_accepted": true
}
] |
0457aac29dbe76426b50081bcd66be5d | hello,
i’m currently trying to implement a refreshing mechanism for the jira rest api in my application. the first time i authorize a user, i’m receiving both an access token and a refresh token. however, when i’m trying to renew an access token with a refresh token, another refresh token won’t be … | refresh token is not provided when refreshing an access token | atlassian.com | 2021.39 | [
{
"text": "[@yannherren](/u/yannherren),\n\nit seems the documentation is missing a key point about the settings in the developer console about refresh tokens:\n\nselect your integration in the [developer console](https://developer.atlassian.com/console/myapps/) .\n\nselect authorization .\n\nselect use rotating refresh tokens from the refresh token options.\n\nsave your changes.\n\nfor mor…",
"name": "",
"is_accepted": true
}
] |
0f3bed21e28a698d0bfb46c00532018b | i’m trying to upgrade our p2 plugin from an older sdk (6.2.14) to the latest sdk. the plugin compiles and works in a local jira instance started with ‘atlas-run’. however, installing the plugin on a separate server running jira 8.3.0, the plugin fails to initialise with the following message:
detec… | missing com.atlassian.bamboo.buildqueue.manager after upgrading to latest sdk | atlassian.com | 2019.43 | [
{
"text": "never mind! \nthe problem was that i hade declared my dependencies on com.atlassian.upm with <scope>compile</scope> rather than <scope>provided</scope>.",
"name": "",
"is_accepted": true
}
] |
4d3300caa1056ad8e59ef48db7dfe78f | dear community!
we have implemented client side extensions “extension point: bitbucket.ui.pullrequest.overview.summary” for our flow. we have changed it from button to modal recently. however it is often not displayed. if i refresh the screen several times then “sometimes” it works… but it looks li… | /rest/webresources/1.0/resources fails with nullpointerexception. client side extensions don't load | atlassian.com | 2021.43 | [
{
"text": "hi [@balazsgalambos](/u/balazsgalambos), you can’t change the version of wrm, it’s bundled into the product.\n\nthe best solution i can recommend is to find what version of wrm is used by bitbucket is to check this page: [atlassian / platform-module-usage / wiki / atlassian-plugins-webresource — bitbucket](https://bitbucket.org/atlassian/platform-module-usage/wiki/atlassian-plugins-webresource.md)\n\nso far, bitbucke…",
"name": "",
"is_accepted": true
}
] |
de594bfc02a9474425833bb36e35d766 | hi,
i updated my amps from 6.0 -> 8.0.0
i already fixed my pom.xml file
<build>
<plugins>
<plugin>
<groupid>com.atlassian.maven.plugins</groupid>
<artifactid>jira-maven-plugin</artifactid>
<version>${amps.version}</version>
… | amps 8.0.0 can not run with atlas-run | atlassian.com | 2019.43 | [
{
"text": "hi [@tien.dang](/u/tien.dang) \nwith the new sdk 8.x.x \n\nfor jira 8.0+ \n <properties>\n <jira.version>8.1.0</jira.version>\n <amps.version>8.0.0</amps.version>\n\natlas-run \n\nfor jira 7.x \n <properties>\n <jira.version>7.12.3</jira.version>\n <amps.version>6.3.21</amps.version>\n\natlas-…",
"name": "",
"is_accepted": true
}
] |
0fe1ac2a268ed5d8f28b220916ea2686 | i’m trying to create a space admin page for my plugin. in general, this works but whenever i open that page, all the fields are loaded with their default values, not with the saved ones. saving the settings (and other post functions) works just fine, they arrive in the backend and can be used there.… | plugin's space admin page servlet does not run doget() | atlassian.com | 2021.17 | [
{
"text": "i did not manage to actually call the doget() method. however, i am now filling the plugin’s space admin page’s fields on load via several getfieldname() methods in the action class. not exactly what i wanted to do but it does get the job done.\n\nfor completion’s sake, this is what the methods in the…",
"name": "",
"is_accepted": true
}
] |
1328cd9664d4db46d401250b13d1c827 | i am trying to use @atlaskit in my custom ui and having no luck. could someone please help with what i might be missing? (public git repo of sample code at [github - decreelabs/simple-custom-ui: custom ui example from atlassian forge](https://github.com/decreelabs/simple-custom-ui))
forge create (chose custom ui and jira project pane)
npm install… | help with forge custom ui atlaskit and styling | atlassian.com | 2021.39 | [
{
"text": "in my manifest i have declared this\n\npermissions:\n\ncontent:\n\nstyles:\n\n- 'unsafe-inline'\n\nand this is the index.html file\n\n<head>\n\n<meta charset=\"utf-8\" />\n\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n\n<meta http-equiv=\"content-security-policy\" content=\"sty…",
"name": "",
"is_accepted": true
}
] |
580f1a8b3b97257631481fafb21bca3c | hello,
i came across the bitbucket client-side extensions template and followed these instructions:
<https://developer.atlassian.com/server/framework/clientside-extensions/guides/introduction/>
i created an image in order to install node 12.19, maven 3.8.1, java jdk 1.8 and atlassian sdk 8.
reposi… | bitbucket client-side extensions template - build failed | atlassian.com | 2021.39 | [
{
"text": "[image] erichemmerlin:\n\njava returned: 137`\n\ni haven’t seen this error so far but quickly looking at google i think you are running out of memory.\n\nfrom what i understand you are trying to run this code inside the docker container, right? maybe you need to increase docker memory limits.\n\n[im…",
"name": "",
"is_accepted": true
}
] |
b34b83b38e40db95777fd90e86098c37 | hello. i want to add new features into my awesome jira cloud add-on. but, unfortunately, i’m not sure that old users will get information about new features.
the first idea was: to add modal window to show changelog on update. but it could be not okay from the users standpoint. i mean, such modal c… | what's the best practice to inform add-on users about new version? | atlassian.com | 2021.17 | [
{
"text": "we’ve implemented independent service to deliver notifications. add-ons make the request to this service and get actual data. each notification marked with add-on identifier.",
"name": "",
"is_accepted": true
}
] |
d129a9f780a2b99edc47d37acba1411e | am trying to publish my first forge app to atlasssian market place. there is a place in a form that says
enter a valid app key.
the key must be unique and use dotted notation, such as com.atlassian.confluence.plugins.myawesomeplugin
see the screenshot below
[[imag…](https://qbtut.com/codex.png) | where can i get my app key | atlassian.com | 2021.43 | [
{
"text": "hi [@esedofredrick](/u/esedofredrick),\n\nwhat you want to use as an app key is completely up to you (as long as it doesn’t contain invalid characters). as in the example, you could do something like:\n\ncom.yourcompany.confluence.codex-for-team\n\nbut you could also choose a less complex key and go with something simple lik…",
"name": "",
"is_accepted": true
}
] |
81b981d4164e65f62259ad844f4fcffb | hi, i’m trying to make my own custom field.
it is work, but i’m trying to make a searcher for them but i’m unnable to do that.
this is my customfield type:
<customfield-type name="prueba" i18n-name-key="jira-custom-field.name" key="admintextfield" class="com.inlogiq.plugins.jira.customfields.ji… | unable to work custom field searcher | atlassian.com | 2019.47 | [
{
"text": "hi, i found the solution to this.\n\nif you add the import:\n\nimport com.atlassian.plugin.spring.scanner.annotation.imports.componentimport;\n\nand then make the constructor like that\n\npublic searcherexacttext(@componentimport jqloperandresolver jqloperandresolver, @componentimport customfieldinputhe…",
"name": "",
"is_accepted": true
}
] |
b33304d23ddf3e924b49d22be7b1ba21 | create a page “page 1” and add an info macro to its body, and then a page “page 2” without an info macro. the info macro requires a css file in order for its export view to be rendered properly. in the following, we will try different ways to retrieve page 1 and page 2 through the rest api, using th… | weird behaviour of body.webresource expansions | atlassian.com | 2021.10 | [
{
"text": "hi [@candid](/u/candid),\n\nthanks for explaining this in so much depth. i have created [confcloud-71603](https://jira.atlassian.com/browse/confcloud-71603) for the confluence cloud team to address.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
432a16c6a3abe225377f30baa54c6bf7 | hello forge team,
long time no see and i am coming back with something that i believe it should be fixed.
when i execute the command the console returns me the follow error message:
error: server error: [{“message”:“you can only asked for a maximum of 20 cloudids”,“locations”:[{“line”:2,“column”… | forge install:list command returns error if app is installed in more than 20 cloudids | atlassian.com | 2021.25 | [
{
"text": "current workaround i found is the following.\n\nin cli execute: forge install:list --verbose\n\nget the list of cloudids which are located on the bottom of the console\n\nopen [graphql gateway](https://api.atlassian.com/graphql) and then write some graphql queries.\n\nactually it’s not convenient to be honest.\n\n[@bentley](/u/bentley) could i ask you for an …",
"name": "",
"is_accepted": true
}
] |
c97a3af7dfa2c458ed1cb1d6bf4d9107 | hi,
we develop a jira plugin that integrates in the single issue view, in the right sidebar, under the “hipchat discussion” widget.
some of our users complain that while the plugin loads, the other elements of the view are disabled. it slows them down as they do not need the plugin to be loaded to… | issue interface disabled while plugin loads in the sidebar | atlassian.com | 2021.17 | [
{
"text": "we are already doing some kind of asynchronous loading for our plugin.\n\nthe customer sent us a video of the issue and in fact it’s the way jira works: while it loads the issue page, the left menu items are loading and the ui controls are not responsive until it is fully loaded. he tried with our plu…",
"name": "",
"is_accepted": true
}
] |
6d80cdd6bbde1a564e9fb115a2c88585 | we have general pages in our app and we send the link in email notification to users if there is any action expected from user. when clicked on the direct link to app page, if user is not already logged in, it shows error with title “somthing’s gone wrong” (please see the attached screenshot)
for g… | when user is not logged in jira is not redirecting to login page when app general page is accessed using direct link | atlassian.com | 2021.31 | [
{
"text": "you can use this url https://id.atlassian.com/login?application=jira&continue=\n\nand put continue parameter to the url-encoded url you want your customer to end up.",
"name": "",
"is_accepted": true
}
] |
8844f3abdf4672172fe1958389da9691 | i got through “npm install”. i setup the credentials.json file.
i think node.js is setup properly, if i run “node” in cmd it opens and i can use it.
i got the following running “npm start”:
[email protected] start c:\users\ron\documents\visual studio 2015\projects\confluence\confluence-hel… | hello world addin fails at step - "npm start" | atlassian.com | 2021.17 | [
{
"text": "this was very frustrating. i figured out how to solve the problem, i hope this get’s fixed soon. i imagine this will be a problem for many people…\n\nsearch “events.js:183” you will see there is a problem with google chrome (recent versions).\n\nuninstall google chrome\n\nrestart computer\n\ndelete the “nod…",
"name": "",
"is_accepted": true
}
] |
488887deebb0a4dcb6ba261a323b003c | happy new year everyone! it’s a new year and i have some new problems with which i could use some help.
i have some javascript in my addon which doesn’t work in the navigator but does work when i’m directly viewing the issue. or atleast some parts of the javascript won’t work. the ajs.$(document).o… | parts of javascript not working in issue navigator | atlassian.com | 2021.17 | [
{
"text": "so after look around some more and trying some new search terms i stumbled on this topic: <https://community.atlassian.com/t5/answers-developer-questions/javascript-code-is-unable-to-load-when-issue-summary-is-open/qaq-p/499651>. so i did what suggested there and used:\n\njira.bind(jira.events.issue\\_ref…",
"name": "",
"is_accepted": true
}
] |
a3287a38d0b6f534c58a4a78f2460214 | hello
i have tested what kind of notifications i’mm receiving when my atlassian connect add-on not responds anymore.
at the moment i receive an e-mail "[atlassian marketplace] error polling your descriptor for ".
are there any channel-options to receive an error polling notification ? sms or slac… | notification options for atlassian connect add-on polling error | atlassian.com | 2021.17 | [
{
"text": "at the moment we don’t provide options for how to be notified - just through the email you got.",
"name": "",
"is_accepted": true
}
] |
50e7fe4e817742475af66a979a1051a8 | it would be helpful when scanning responses to a post to be able to quickly identify responses from atlassian staff.
would it be possible to create a badge, or possibly an ‘atlassian’ title (via groups) to identify everyone from atlassian? | identifying atlassian staff | atlassian.com | 2021.17 | [
{
"text": "good idea [@simonh](/u/simonh).\n\nconsider it done :slight\\_smile: (take a look next to my name)",
"name": "",
"is_accepted": true
}
] |
041affe5f3b3cb5be3937ac9fc4a096c | with uikit is easy to retrieve the productcontext by using the
[uikit useproductcontext](https://developer.atlassian.com/platform/forge/ui-kit-hooks-reference/#useproductcontext) hook.
what alternatives do you provide when using customui? i am especially interested in retrieving basic info such as issuekey, accountid so that i can use the rest api.
thanks! | missing a way to retrieve the productcontext when using customui | atlassian.com | 2021.04 | [
{
"text": "[@bjornbrynjar](/u/bjornbrynjar) have a looks at daniel’s comment here on how to return the context from a resolver function:\n\n[image]\n\n[zap️ introducing custom ui: static html/css/js frontends on forge](https://community.developer.atlassian.com/t/introducing-custom-ui-static-html-css-js-frontends-on-forge/42853/8) [forge announcements](/c/forge/forge-announcements)\n\nhey [@naiara](/u/naiara),\n\ncontext information is available in the custom ui resolve…",
"name": "",
"is_accepted": true
}
] |
bd6ade6aa121d1438f5fc469fba507cc | the configure button doesn’t work. i click by configure button and nothing happens.
[jira] | oauth 2.0 (3lo) configuration | atlassian.com | 2021.31 | [
{
"text": "[@adrug](/u/adrug) thanks for reporting this. we have fixed this issue and now it should work as expected. thanks for reporting issues like this one.",
"name": "",
"is_accepted": true
}
] |
d6cf765d8047010efe17f8eeeaeaa0e5 | the problem is that all user objects that are returned by rest api (like ones that come from /rest/api/2/user/search) have “accounttype”=“atlassian” even for app/addon users (it should return “accounttype”=“app”), so i can’t distinguish apps/addons from real human users. is there any way to bypass t… | rest api returns "accounttype"="atlassian" for app/addon users | atlassian.com | 2021.17 | [
{
"text": "thanks, [@iragudo](/u/iragudo)!\n\nlooks like they already have implemented this but with bug described in my first post here. will hope that they will fix that soon, here is bug ticket for that, please vote for it <https://ecosystem.atlassian.net/browse/acjira-1903>",
"name": "",
"is_accepted": true
}
] |
69283188db9359e1b2035e2f877e9cc4 | how to fix datepicker in iframe inside issue view?
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/b/a/ba4a3d76063a6aa7f6f467ac3cf033d08ce17520.png "image")
content of atlassian-connect.json section “modules”:
"jiraissuecontents": [
{
"icon": {
"width": 0,
"height": 0,
"url": "/client/icons/user-f… | how to fix datepicker in iframe? | atlassian.com | 2021.17 | [
{
"text": "have you tried using this [ap.jira.opendatepicker](https://developer.atlassian.com/cloud/jira/platform/jsapi/jira/)? i believe it solves this problem",
"name": "",
"is_accepted": true
}
] |
d5bcbaec7a62709bff1592976b978119 | is there a jira rest api which provide details about the add-ons installed in the server.
please provide me the details. | jira api to get installed add-on information | atlassian.com | 2021.17 | [
{
"text": "i’d suggest digging through the rest browser. especially the upm rest end points.",
"name": "",
"is_accepted": true
}
] |
4ce9dc72efb6692d26c55fc9f2852c92 | hello,
i am using the v2 search manager to retrieve the content objects within a space. i followed this example in your [documents](https://developer.atlassian.com/server/confluence/searching-using-the-v2-search-api/), and the example works fine. however, i have an issue with constructing the searchfilter object with the sitesearchpermissionssearchfilter object.
the example lists thi… | searching using the v2 search api permission search filter | atlassian.com | 2021.17 | [
{
"text": "imho atlassian uses the @deprecated and @experimental annotations without giving much thought to what it means for the users of the api.\n\ni also wanted to use the constructor instead of deprecated getinstance() method, but you can’t solve the issue without doing some funny stuff.\n\nthe problem is tha…",
"name": "",
"is_accepted": true
}
] |
2e47865a12cd065e94df0c8139f28dc4 | i develop a connect plugin with spring-boot and my plugin has a configuration page with a form. on submit of this form my backend is called, but logs the above error.
since the [atlassian-connect-spring-boot documentation](https://bitbucket.org/atlassian/atlassian-connect-spring-boot?_ga=2.85134751.780390324.1517146454-1991781115.1507056375) states:
atlassian-connect-spring-boot-starter provides the following feature… | why am i getting "expecting claim 'qsh' to have value 'a' but instead it has the value 'b' | atlassian.com | 2021.21 | [
{
"text": "okay, so the jwt being rejected was issued by jira, not by your add-on.\n\nthe problem is that the form submission request contains two jwts: one in the url query string (/configuration?..&jwt…) and one in the request body.\n\nwhen [jwtauthenticationfilter](https://bitbucket.org/atlassian/atlassian-connect-spring-boot/src/7f662bd56b8cc854f3f5d386b888713cbcad1c50/atlassian-connect-spring-boot-core/src/main/java/com/atlassian/connect/spring/internal/auth/jwt/jwtauthenticationfilter.java#jwtauthenticationfilter.java-111) can’t find an authorization header with a jwt, i…",
"name": "",
"is_accepted": true
}
] |
ad424cc6cce76ab01b0e33bc24696da2 | import forgeui, {avatar, render, fragment,useproductcontext, macro, text, configform, textarea, useconfig} from "@forge/ui";
const app = () => {
const config = useconfig();
console.log(useconfig());
const terms = config && config.terms.split('\n');
const definitions = [];
const { contentid… | useconfig is not useful | atlassian.com | 2021.39 | [
{
"text": "hi [@111112](/u/111112)\n\nit is probably undefined because no config values from the properties dialog have been set for that page.\n\nalso, the code looks a bit difficult to follow. try following <https://developer.atlassian.com/platform/forge/add-configuration-to-a-macro/> to get things working.",
"name": "",
"is_accepted": true
}
] |
5a5a1ab7bf66bffc34ab833d6b141643 | hi guys and girls
i try to update a customfield value but the server response is “bad request - error parsing body”.
my get request:
let requestoptionsput = {
method: 'put',
headers: { 'accept': 'application/json', 'content-type': 'application/json' },
'authorization': `oauth oa… | update (put) a customfield (error 400 / error parsing body) | atlassian.com | 2021.39 | [
{
"text": "thanks for trying :slight\\_smile: i did manage to make this put request in postman as you did in insomnia. still not working with javascript :confused:\n\nedit:\n\nok got it!\n\ni must json.stringify() on the body and have the key/token in as a query parameter instead of the header.",
"name": "",
"is_accepted": true
}
] |
3f4ddd8e679de14fdf5032f91c855df3 | hi
i am trying to merge a pull request using the rest api. however i am getting an error when trying this
curl -x post -k -h 'content-type: application/json; charset=utf-8' -h 'authorization: basic <<encoded value>>' -i 'https://api.bitbucket.org/2.0/repositories/lv\_digital/code-commerce/pullreque… | not able to merge pull request | atlassian.com | 2021.17 | [
{
"text": "[image] tshah:\n\n{\n\n“pullrequest\\_merge\\_parameters” : {\n\ntype: “pullrequest”,\n\nmessage: “automated commit for branch sync”,\n\nclose\\_source\\_branch: true,\n\nmerge\\_strategy : “merge\\_commit”\n\n}\n\n}’\n\nah, yeah, when i run into error 400 i’ve learned it usually means my json is bad. in this case, you need…",
"name": "",
"is_accepted": true
}
] |
9fd1cfea0d9d1f2ac73df17225d8a9b3 | hi,
for a given issue, i want to know all the fields (including metadata like requiredness, type, label).
but, some fields have a massive amount of allowedvalues (e.g. version fields often do), and if there are multiple ones, those options will be included in the editmeta response multiple times.
… | fetch issue metadata via rest without also fetching allowedvalues? | atlassian.com | 2021.39 | [
{
"text": "hey [@thomasehrnhoefer](/u/thomasehrnhoefer)\n\ni think we sadly don’t support the exact operation you’ve described. as far as i know, there’s currently no way to fetch field metadata without allowedvalues field using existing apis.",
"name": "",
"is_accepted": true
}
] |
009fbca2f138db810e19bd3d395b0c3d | hi there,
anyone knows why search rest api does not return the defined maxresults?
if i set the maxresults as 200, the value returned is always 100.
documentation:
<https://docs.atlassian.com/jira/rest/cloud/#api/2/search>
thank you.
cheers,
rui rodrigues. | search rest api - maxresults | atlassian.com | 2021.17 | [
{
"text": "there is a setting for each jira instance which limits the maximum number of search rest api results. if you request more than that then search rest api results return the maximum allowed maxresults.\n\nrecently this maximum number for all jira cloud instances was reduced to 100. see [https://jira.atla…](https://jira.atlassian.com/browse/jracloud-67570)",
"name": "",
"is_accepted": true
}
] |
82c28510525411d8726ec3de7fb3d0df | hi guys, according to the following documentation
<https://developer.atlassian.com/static/connect/docs/latest/release-notes/deprecations.html>
atlassian will be releasing and changing the event model in a few days. how real is this? would you be taking out/changing the old events on april first?
ju… | jira cloud event deprecation | atlassian.com | 2021.17 | [
{
"text": "hi fernando,\n\nthe events probably won’t be deleted overnight on the 1st of april. however, they eventually will be removed, without any further notice. in other words, using them after that date is not guaranteed to work. please migrate to the replacement events as soon as possible if you are still …",
"name": "",
"is_accepted": true
}
] |
d787c8e14c0f9aeef36e2cda9a2f0904 | i need to trigger the macro editor to open when a macro is inserted in a page. is it possible to programatically open the editor.
i can open a dialog when the macro is added, but the problem is that i can’t call ap.confluence.savemacrodata(x,y) unless i am in the editor.
it looks like other addon… | confluence dynamiccontentmacro - is it possible to open custom editor upon macro add | atlassian.com | 2021.31 | [
{
"text": "ah [@dmorrow](/u/dmorrow)\n[this helped me](https://community.developer.atlassian.com/t/savemacro-without-custom-editor/46283)\n\nif you add a mandatory parameter - the editor opens and i can call savemacro\n\nthanks for your help and very quick responses…",
"name": "",
"is_accepted": true
}
] |
5818b14b659d8785093faec27b3a6abc | hello,
after updating the atlassian-connect-spring-boot dependency to 2.1.4 version, when i try to install my app it gives a 500 error and the following exception is displayed.
java.lang.nosuchmethoderror: com.nimbusds.jose.payload.tojsonobject()ljava/util/map;
at com.atlassian.connect.spring.int… | update to atlassian-connect-spring-boot 2.1.4 fails when i try to install | atlassian.com | 2021.21 | [
{
"text": "hi [@jbolufer](/u/jbolufer), this is a known issue which we are tracking as [acspring-125](https://ecosystem.atlassian.net/browse/acspring-125). the ticket has two alternative workarounds.",
"name": "",
"is_accepted": true
}
] |
2e9352f3ffafa8f297e5abcefb38f491 | i’m interested in either creating or modifying on the fly jira boards using jql. is this possible using the jira rest api? if not, would i need to construct a “board like entity” manually using the aui in order to pull in relevant issues? | rest api - jira boards | atlassian.com | 2021.17 | [
{
"text": "hi, you are asking about jira software functionality. there is an additional set of rest api endpoints for jira software - <https://docs.atlassian.com/jira-software/rest/cloud/>. you can find there an endpoint for creating a new board - [https://docs.atlassian.com/jira-software/rest/cloud/#agile/1.0/bo…](https://docs.atlassian.com/jira-software/rest/cloud/#agile/1.0/board-createboard)",
"name": "",
"is_accepted": true
}
] |
8bfc2ccf8ec5e7d441ea7e2f05a7d8a9 | i’m at my wit’s end. some requests to the /rest/api/2/filter/search endpoint complete successfully, but others fail with a 403 forbidden error and this message:
“add-on ‘ourappkeyredacted’ disallowed to impersonate the user because ‘no valid active user exists’”
what does that message actually m… | disallowed to impersonate? | atlassian.com | 2021.43 | [
{
"text": "with the help of [@cmacneill](/u/cmacneill), i was able to solve this problem today. it turns out that our app wasn’t filtering out users with accounttype == \"app\", so our attempts to hit the /rest/api/2/filter/search endpoint were being rejected because they were being executed on behalf of other apps. we added so…",
"name": "",
"is_accepted": true
}
] |
7a00ec6b9198d9fe4eefdfc02a8d0ee4 | hi all! this is my first question as a developer!
as a add-on developer, i’m developing a prototype plugin for my first work(debut!).
the goal is checking permissions group holds for project and displaying it.
i think it is the best way to call permission scheme applied to each project, and
chec… | add-on fails to start | atlassian.com | 2021.17 | [
{
"text": "couple of reasons:\n\nit’s not marked with @publicapi (only use non public apis if you have to - and even then be careful :slight\\_smile: ).\n\nin the source code - it’s not listed in com/atlassian/jira/containerregistrar.java\n\nyou’ll want to inject permissionmanager. :slight\\_smile:",
"name": "",
"is_accepted": true
}
] |
27ce07b55d8d5e717dd98634a4e66208 | hi team,
i’ve created a p2 project setting’s page and the page is almost right. the main problem is the container’s sidebar that it’s broken.
currently, the sidebar looks like this (i include the browser logs). the project setting’s left menu item is selected. the sidebar is the one broken.
[[ima…](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/f/8/f828095b7776d6ad90301a0cb3e45f2026d83619.jpg "image") | project settings's sidebar broken (jira, p2 and react) | atlassian.com | 2021.17 | [
{
"text": "hi [@fboucquez](/u/fboucquez), i will find some time to check your example later this afternoon and update this comment with what i can figure out for you.\n\nupdate 5:03pm: this problem is occurring only when the files are batched. the problem is not due to your code, but rather to a cascading javascript error: as s…",
"name": "",
"is_accepted": true
}
] |
5da1182f929e2c81b63d9cad41fe2c5a | what i am trying to achieve is that i want to create a add-on for jira to connect with my spring application and consume it’s rest services. but my rest application is a multi-tenant system like jira and i need to figure out which tenant made the service request. for this i have to create a secret k… | app key access in application js | atlassian.com | 2021.17 | [
{
"text": "it’s possible, it’s just not very smooth. you’d set it up as a multiple step process.\n\nyou’d basically need to publish an app on the atlassian marketplace - then:\n\nin your spring powered page as the first step - you would have the user to install the atlassian connect app\n\nin your spring powered pag…",
"name": "",
"is_accepted": true
}
] |
79913bf8741c1bf01e33e83dd05a7e16 | <form class="aui" action="feedbackviewaction.jspa" method="post">
<div>
<div class="aui-group">
<div class="aui-item">
<table align = "center">
<tbody>
<tr id="customersurvey" rel="customer-sur… | aui documentations required field is not working inside the table tag for the select option label. please help? | atlassian.com | 2021.17 | [
{
"text": "it’s a combination of things happening. icon-required comes from the form part of aui. it really likes:\n\n<div class=\"field-group\"> so if you wrap your label with that things should work properly.\n\nthat said - any reason why you’re not just doing <form class=\"aui\"> and skipping the table piece?",
"name": "",
"is_accepted": true
}
] |
51afd5a9e04c2a7b9e68f37d2a27d101 | hi
i am doing some webhook stuff, and was just wondering : is the card id unique across all boards or do i have to pair it with the board id to get it unique ? | card id unique across boards? | atlassian.com | 2021.21 | [
{
"text": "a card’s id and shortlink are both unique across all boards. no need to pair it with the board id.",
"name": "",
"is_accepted": true
}
] |
7f3d7c2a8ed7f533f3fe15c5b6eeffec | hi,
i need to connect to an external mysql database from my jira plugin, for which i have included the mysql-connector-java dependency in my pom.xml.
after doing and atlas-clean and package, when i install the plugin, it says
caused by: org.osgi.framework.bundleexception: unresolved constraint in… | maven dependency for mysql java connector not working - linked missing requirements error | atlassian.com | 2021.17 | [
{
"text": "probably what is happening is that some classes in the mysql driver import these packages, but they are not used at runtime – for instance, when i try to reproduce your case the missing package is com.google.protobuf, which is used by the xdev api.\n\nyou can set the osgi resolution of packages to opt…",
"name": "",
"is_accepted": true
}
] |
b294aefa2fedbad5adf2cda2e70c4b17 | hi i am trying to create a page using rest api with payload.
let pagedata = {
type: “page”,
title: title,
ancestors: [{ id: 34 }],
space: {
key: “test”,
body: {
storage: {
value: “ this is a new page. this is not working yet. ”,
representation: “storage”
}
}
}
};
the page is getting cr… | empty page after create page | atlassian.com | 2021.17 | [
{
"text": "my bad the storage field was inside space. it should be kept out. made the changes and it worked fine.",
"name": "",
"is_accepted": true
}
] |
03f30e4ca9934b2a7896bdec42b39564 | hi,
i have a workflow state called released, when the transition happens to this state , can i modify content in wiki ? what i would like to do is, when release happens i want to move a certain existing page under a hierarchy to another hierarchy (like a move operation) . is this possible ? | can we modify confluence content on a jira workflow post-function? | atlassian.com | 2021.17 | [
{
"text": "there’s an example of creating a page from a transition here: <https://scriptrunner.adaptavist.com/latest/jira/interacting-with-confluence-from-jira.html>\n\nmoving a page is similar, just a different rest call. the key thing is to have your app links set up.",
"name": "",
"is_accepted": true
}
] |
ed26656303b4048a00a2f364e55c3e7b | hi,
i have been trying to import classes from [com.atlassian.sal.api.net](http://com.atlassian.sal.api.net) in order to do authentication through application links (between bitbucket and jira) but have continually run into compilation failures when running atlas-debug, specifically this error:
[error] /c:/atlasplugin/plugin/src/main… | unable to compile due to com.atlassian.sal.api.net | atlassian.com | 2021.17 | [
{
"text": "response isn’t injectable (which you already knew :slight\\_smile: ).\n\nto get you started properly, let’s create an app that just executes http requests over to jira from bitbucket. first we’ll create a service called jiraremoteconnectionservice (because well it will connect to a remote jira - and i h…",
"name": "",
"is_accepted": true
}
] |
0da3738e260f432c898abfda25e2f8bd | hi @all,
i can’t find a valid entry point for the “render”/view with custom ui for the jira:customfieldtype module. documentation states that it is available: <https://developer.atlassian.com/platform/forge/manifest-reference/modules/jira-custom-field-type/#rendering>
it states that the function pro… | customfield custom ui for render/view | atlassian.com | 2021.43 | [
{
"text": "hi [@a.yessipovskiy](/u/a.yessipovskiy) ! welcome to atlassian developer community!\n\ncustom ui is not available for the view render function of custom field module - you can use only ui kit or formatter to customise the view. custom ui can be used only in edit property of the module.\n\nyou can check in [https://developer.…](https://developer.atlassian.com/platform/forge/manifest-reference/modules/jira-custom-field-type/#properties)",
"name": "",
"is_accepted": true
}
] |
e58d2bb0bd7dedd1b0ddf393d95eeffd | hi,
i have started playing with jira expressions but can not get worklogs from issue (changelogs also)
documentation told nothing about that
<https://developer.atlassian.com/cloud/jira/platform/jira-expressions-type-reference/#issue>
post returns error ’ unrecognized property of issue: “worklog”’. … | no worklogs in issue for jira expressions | atlassian.com | 2019.43 | [
{
"text": "alright, thank you for the explanation. we’ll think about expanding jira expressions, or the rest api for worklogs.",
"name": "",
"is_accepted": true
}
] |
b1db6750f5b15551814f04c9dbc0cfeb | hi,
does anyone know how to get the lucene document objects from a jql query instead of issue objects?
thanks,
pablo. | api to get lucene document instead of jira issue objects from a jql? | atlassian.com | 2021.17 | [
{
"text": "the search results are documentissueimpl - which implement issue but get values from the document. if you need the actual document you can get it via reflection… don’t think there is another way if you are using the searchservice or similar apis.",
"name": "",
"is_accepted": true
}
] |
d64418e2ad7aaf0747d6e684cf5451f0 | hello,
my idea:
i try to send a zip to a java endpoint, where the zip is extracted and i read a json inside the zip to create a confluence page and add the zip as attachment.
my code works till the attachment getting uploaded. i get the error my inputstream is 0. how can i attach the complete zi… | can't upload attachment with right size with java plugin | atlassian.com | 2020.10 | [
{
"text": "so i found the problem. you can’t upload a bytearrayinputstream with the same inputstream i already read with my helper class.\n\nnew inputstream and the filesize was right.",
"name": "",
"is_accepted": true
}
] |
6068376b19ffe7deb8922144884e3a67 | i try to upgrade my plugin from jira version 7.13.0 to 8.0.2.
but somehow the quickreload didn’t work for me.
and in my pom.xml “enablefastdev” is not allowed here.
i need some help.
thanks,
my pom.xml
<build>
<plugins>
<plugin>
<groupid>com.atlassian.maven.plugins</groupid>
… | quick reload can not work with jira version 8.0.2? | atlassian.com | 2020.10 | [
{
"text": "it might be actually working, but you won’t see the messages in atlas-debug output like it was with jira 7.\n\nwith jira 8+ you’ll need to check jira log file by yourself (you can use something like tail -f target/jira/home/log/atlassian-jira.log for example) to see quickreload messages.",
"name": "",
"is_accepted": true
}
] |
c7f93b342ee8cccc59e3a1b71ef35fdf | am working with forge ui kit
i saved two records to storage
await storage.set('mykey1', {first\_name: 'frank', last\_name: 'james', department: 'chemistry' });
await storage.set('mykey2', {first\_name: 'john', last\_name: 'carrot', department: 'chemistry' });
//const data = await storage.g… | how to query multiple records from storage api via forge | atlassian.com | 2021.39 | [
{
"text": "hi again,\n\nusing getmany() actually returns an object with an array named results in which each result is a key-value pair of the obtained record.\n\ntry something like (but don’t take my code for granted):\n\nconst data = await storage.query().where('key', startswith('shagg')).getmany();\n\nreturn data.re…",
"name": "",
"is_accepted": true
}
] |
838e346691be2c8dc670be6d460b9830 | hi everyone,
i’ve been following the guide [aws quick start for confluence data center](https://aws.amazon.com/quickstart/architecture/confluence/) and is uses a [template](https://aws-quickstart.s3.amazonaws.com/quickstart-atlassian-confluence/templates/quickstart-confluence-master-with-vpc.template.yaml) to create the stack. i followed the guide step by step and entered all required fields and didn’t add anything custom and the stack creation fails with the following error:
embedded stack a… | creating confluence data center aws stack from template fails | atlassian.com | 2021.39 | [
{
"text": "the only information i found is the one posted above. it did not work with the official template, but i found another template that worked for me: <https://git.bitvoodoo.ch/projects/bvaws/repos/confluence-quickstart/browse/templates/quickstart-confluence-master-with-vpc.template.yaml>\n\nmaybe someone i…",
"name": "",
"is_accepted": true
}
] |
c08d4344aea23b1e38ae726a4f514207 | background:
we have a 1:m relationship between a custom app’s issue to the number of jira issues linked to it. the jira issues have a custom field showing the app’s status and this field is automatically updated whenever our app’s issue status is changed. to do this, we grab a linked issue cache fr… | is it possible to test whether an issue is archived via jira rest api? | atlassian.com | 2021.25 | [
{
"text": "answering my own question\n\nfields {\n\n. . .\n\narchivedby: null,\n\narchiveddate: null,\n\n. . .\n\n}",
"name": "",
"is_accepted": true
}
] |
8b1ff2b8aef644254b3a6408e28673ab | i’ve just noticed that the websections in our descriptor are not being rendered as they used to be.
here’s a screenshot of my add-ons page. you can see that apart from portfolio there are no websections rendered (i’m expected to see a “scriptrunner” section and a “jmwe” section), and all the webite… | add-on web sections not being displayed correctly | atlassian.com | 2021.17 | [
{
"text": "hi [@tobias.viehweger](/u/tobias.viehweger) and [@jbevan](/u/jbevan),\n\nthe fix has been rolled out, see [jracloud-69647](https://jira.atlassian.com/browse/jracloud-69647). i checked my personal instance and was able to verify that it is fixed already.\n\ncheers,\n\nian",
"name": "",
"is_accepted": true
}
] |
30b0455a30e56a9b02affcad104a0ce0 | hello,
i am trying to create an application.
when i register the app, i get the error “this key is used by an existing application.”
however, the very same app is in the marketplace and pending approval. there was no validation at all from the marketplace side and this is pending validation.
why… | cannot create application but application pending in marketplace | atlassian.com | 2020.16 | [
{
"text": "for future reference. when registering an app you must use a key that doesn’t exist amongst any other registered app or any installation of an unregistered app. the easiest work around is to use a new key, but if you can’t do that, all of the existing, unregistered app installations for that key wou…",
"name": "",
"is_accepted": true
}
] |
4bd92f3439dbd670d70d99f65a91d13e | hi:
i’m going to test my confluence plugin performance for confluence datacenter , i cloned the [dc-app-performance-toolkit](https://developer.atlassian.com/platform/marketplace/dc-apps-performance-toolkit-user-guide-confluence/#testscenario1) , but it seems dosen’t support confluence . so i tried the dev-branch which support confluence enterprice 6.13.x version. [https://github.com/atlassian/dc-app-performance-too…](https://github.com/atlassian/dc-app-performance-toolkit/tree/dev) | problems on confluence datacenter app performance testing | atlassian.com | 2019.51 | [
{
"text": "well, you can. but unless you’ve got a lot of time to invest i would strongly recommend waiting on the official tooling. tools like e4 are great if you know what you’re doing but they have a steep learning curve. using the official tooling is probably easier and also more future proof if atlassian s…",
"name": "",
"is_accepted": true
}
] |
7da22b5075857b31be89a23946d72660 | hello.
i’m trying to run my unit tests written with junit5 with maven.
i have configured relevant pom.xml sections like this :
dependencies :
<dependency>
<groupid>org.junit.platform</groupid>
<artifactid>junit-platform-launcher</artifactid>
<version>… | problem running junit5 tests with maven surefire | atlassian.com | 2020.16 | [
{
"text": "thank you. using your repo as a reference i’ve managed to fix my code.\n\nwhat i’ve done is :\n\nremoved this\n\n<plugin>\n\n<groupid>org.apache.maven.plugins</groupid>\n\n<artifactid>maven-surefire-plugin</artifactid>\n\n<version>2.22.2</version>\n\n<c…",
"name": "",
"is_accepted": true
}
] |
cd69016cfc0aedf85a686ec68882c2b4 | i would like to set up intellij idea to write scripts on groovy(scriptrunner) in jira.
there are some questions about setting up an integration of intellij idea integration with jira software (scriptrunner) and i’d like to fix some troubles.
there are:
windows workstation 7 with intellij idea 20… | intellij idea integration with jira software(scriptrunner) | atlassian.com | 2021.17 | [
{
"text": "well…\n\nas said in adaptavist support there is a bug in the scriptrunner idea plugin.\n\nso, wait when this bug will be solved and then a new release of scriptrunner for jira plugin will be rolled up…\n\njust wait a new release…\n\n<https://productsupport.adaptavist.com/browse/srjira-2807>\n\nunfortunately as …",
"name": "",
"is_accepted": true
}
] |
1b19bec9d3701aaff6b618712c546859 | hi,
when using the bitbucket website to list all pipelines, a “commit target pipeline” is displayed with its commit message. but this field is missing in the api response.
i watched the api call that the bitbucket website is using and there is a field parameter for “+values.target.commit.message” … | pipelines commit target is missing commit message | atlassian.com | 2019.47 | [
{
"text": "the behavior should be the same whether using the site or oauth.\n\nplease double check that the plus sign is percent-encoded, otherwise it gets interpreted as a space.\n\n?fields=%2bvalues.target.commit.message\n\nthe empty response is probably because the plus is interpreted as a space and it thinks you…",
"name": "",
"is_accepted": true
}
] |
bafcc05611dc862c1208405abc26085a | i have the following javascript in a plugin.
ajs.bind(“rte.init.ui”, function() {
var body = ajs.$("#wysiwygtextarea\_ifr").contents().find("[#tinymce](https://community.developer.atlassian.com/tags/tinymce)");
console.dir(body);
body.children().each(showmacro);
});
function showmacro(index, element) {
console.dir(element);
}
the console shows that… | jquery and tinymce | atlassian.com | 2020.34 | [
{
"text": "solved. the appropriate binding point is rte-quick-edit-ready\n\najs.bind(\"rte-quick-edit-ready\", function() {\n\nvar macros = ajs.$('#wysiwygtextarea\\_ifr').contents().find(\"#tinymce table.wysiwyg-macro\");\n\n// work on the macros here\n\n});",
"name": "",
"is_accepted": true
}
] |
40139ee8ddfdfe00bd149db63ac0d47f | i need to refresh the web-panel of my add-on which is in the right side of the issue page when particular event occurs.
while searching through the document, i came to know about new\_content\_added event. but that doesn’t suits my requirement.
is there any other way to reload the web-panel if custo… | refresh issue page web panel on custom events | atlassian.com | 2020.05 | [
{
"text": "require([\"jira/issue\", \"jira/util/events\", 'jira/util/events/types'] , function(issue, jirautilevents, eventtypes) {\n\njirautilevents.trigger(eventtypes.refresh\\_issue\\_page, [issue.getissueid()])\n\n});\n\nthat should allow you to refresh ui without actually pressing the refresh button.",
"name": "",
"is_accepted": true
}
] |
9822b0de18e453b18da9dd78465f5719 | i have a web item that i want to conditionally show under the user hover menu (system.user.hover.links section).
i have my custom java class that implements com.atlassian.plugin.web.condition and it works nice for other condition checks that i also need, but i am stuck on this next one.
the condit… | web item under the user hover menu - can i access the username of the hovered user from my custom java class i use in condition? | atlassian.com | 2019.43 | [
{
"text": "after revisiting my need i saw, that the answer was staring right at me. the context was being passed to shoulddisplay() all along. \npublic class conditioncheck implements condition {\n..\n@override\n public boolean shoulddisplay(map<string,object> context) {\n // the context variable holds wha…",
"name": "",
"is_accepted": true
}
] |
b281554e7cf71bcb0c5b984c29091b62 | the installation for atlassian sdk installation on debian has broken … again.
the latest set of commends we used are:
sudo sh -c ‘echo “deb <https://packages.atlassian.com/atlassian-sdk-deb> stable contrib” >>/etc/apt/sources.list’
wget <https://packages.atlassian.com/api/gpg/key/public>
sudo apt-ke… | apt-update for atlassian sdk has stopped working | atlassian.com | 2020.05 | [
{
"text": "[@jan.revis](/u/jan.revis) - this appears to be a tls cipher issue, probably because 14.04 is old, and the cdn where these packages live are no longer compatible. if you can try a workaround on your end to update the cipher suite, that would be swell. i’ll reach out internally to see if there’s anything that can be…",
"name": "",
"is_accepted": true
}
] |
630d49a99f25d27c6c9b25408c25eb80 | hi all,
saw [in the jira cloud docs](https://developer.atlassian.com/cloud/jira/platform/modules/project-admin-tab-panel/) that jiraprojectadmintabpanels is deprecated. unfortunately the documentation is not very clear on what to use instead. the [page on project settings ui locations](https://developer.atlassian.com/cloud/jira/platform/project-settings-ui-locations/) gives some hints but i still can’t replicate the functionality. i tried with a web item but can’t fig… | how to replace deprecated jiraprojectadmintabpanels module? | atlassian.com | 2021.17 | [
{
"text": "we’re going to rollback the deprecation of jiraprojectadmintabpanels at this time until we can document a solution for replacement. we’re working to update the docs/deprecation notice now to reflect this rollback decision and should be updated in a day or two. so, for now, you can still use jirapr…",
"name": "",
"is_accepted": true
}
] |
b7d53681142e9687fefe1317d00603f0 | i wanted to add a button to the macro property panel following the [documentation](https://developer.atlassian.com/cloud/confluence/modules/macro-property-panel/). however, i could not see the button show when the macro property panel open. i could see this in the old editor.
old editor
[[32%20pm]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/1/b/1bafe3d62771e12d7858846d60e4c59326729378.png "32%20pm")
new editor
[[09%20pm]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/5/b/5b403ce20295912ad8d92d2186b5f58d89dbb1fb.png "09%20pm")
is this feature not supported in the new editor? | macro propertypanel not showing in the new editor | atlassian.com | 2020.50 | [
{
"text": "this is not currently supported in the new editor—if you want to add custom functionality, you should put it behind the edit button (not 100% sure how to do this in connect—just providing info)",
"name": "",
"is_accepted": true
}
] |
3828c3cb61e7e230c7baf7cfb613d282 | we have updated to the jcma 1.5.4 recently and now we cannot perform app data migrations. our app is not recognised as having an automated migration path. this is blocking our jcma integration work. | this app does not have an automated migration path | atlassian.com | 2021.25 | [
{
"text": "hello [@nikolanedoklanov](/u/nikolanedoklanov)\n\nit is likely that the property cloudmigrationassistantcompatibility is missing in your “migration info” on atlassian marketplace.\n\nyou can check the data we have through the url <https://marketplace.atlassian.com/rest/2/addons/your-server-app-key/migration>\n\nif that is really …",
"name": "",
"is_accepted": true
}
] |
97fa8a8ea1a6215d84d8520d0ecaa1c4 | i want to revoke permissions from a repository’s forks in an event listener. i’m using permissionadminservice.revokeallrepositorypermissions in 5.3.0. no matter what i do it throws a hibernate exception saying it needs to be called in a transaction. how do i do this? | permissionadminservice.revokeallrepositorypermissions in a listener | atlassian.com | 2021.17 | [
{
"text": "well, my company no longer exists so i guess i don’t care about this anymore. hope it gets fixed. my final solution was just to email me so i could manage the permissions manually.",
"name": "",
"is_accepted": true
}
] |
a3e2bae7989f65051355336e61cb175a | sometimes i make changes in jira js files. i would like to have a possibility to update the browser cache for all users. i know that they can just to press ctrl + f5. but it’s necessary to avoid any user actions. | how to clear batch.js cache? | atlassian.com | 2021.17 | [
{
"text": "the solution is to change a build number in the pom.xml file, located in jira-core.",
"name": "",
"is_accepted": true
}
] |
360214daf97e01e0d6056a7cf6680f31 | hello!
i spent some time to find a webhook to catch issue name change, but with no results :disappointed: … it is an event when a user is changing it through “administration > issues > issue types > edit > changing the name > update”. could you please help, is it possible to catch this with webhook… | what webhook to use for catching change of issue name? | atlassian.com | 2021.17 | [
{
"text": "yep, there is a rest api that lists all of the issue types: [get /rest/api/2/issuetype](https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-issuetype-get)\n\nyou can poll this api as frequently as necessary to detect when new issue types are created or when the name of an existing issue type has changed.",
"name": "",
"is_accepted": true
}
] |
69331de7756bcb10b9a6a3c8b5ffb9ce | hi,
since a few days i’m receiving the following error in my “atlassian-connect express” based bitbucket cloud app:
‘authentication failed: query hash does not match.’
is somebody aware of anything that might have changed regarding authentication in bitbucket cloud?
thanks,
michael | "query hash does not match" error in bitbucket cloud app | atlassian.com | 2021.17 | [
{
"text": "hi michael,\n\nthank you for getting in touch and letting the team know about this. we have fixed the issue and it should be resolved now. if anything else comes up please get in touch and we will investigate further.",
"name": "",
"is_accepted": true
}
] |
107f0a6746327fdb664f106dcc061398 | dear all,
does anyone know whether confluence stops scheduled jobs during read-only mode?
thank you
andreas | scheduled jobs automatically stopped in confluence read-only mode? | atlassian.com | 2021.17 | [
{
"text": "it was asked at [confluence 6.9 eap released - read-only mode is coming!](https://community.developer.atlassian.com/t/confluence-6-9-eap-released-read-only-mode-is-coming/16572/6)",
"name": "",
"is_accepted": true
}
] |
8d54dbc0610339d47f45486462fff832 | how do i fix this?
[[image-20190924-061919]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/4/a/4afa0fda88e2672a86065d3eeb326fec628ab494.png "image-20190924-061919.png") | why is my plugin showing up in the non-compatible applications list in the cdn plugin health checks? | atlassian.com | 2019.47 | [
{
"text": "in bitbucket server 6.8, cdn support for caching static assets(such as javascript, css, and fonts) was added. this includes static resources that are served by plugins. the warning is displayed is when bitbucket detects that a marketplace or other user-installed app is using a deprecated method.\n\nth…",
"name": "",
"is_accepted": true
}
] |
e8bb2b8ca2a56cbbe4801927d10d2ec3 | i’m doing the confluence app tutorial and seeing the following error on my confluence page:
typeerror: cannot read property 'length' of undefined
at object.app [as type] (index.js:12679:60)
at index.js:12834:36
at async asyncmap (index.js:12769:24)
at async index.js:12790:29
at … | cannot read property length of undefined | atlassian.com | 2021.31 | [
{
"text": "hi [@kestrel17](/u/kestrel17) ,\n\ni suspect confluence doesn’t think your app has the right permissions so it’s returning an error object in which there is no comments node. did you add the read:confluence-content.summary permission to your manifest? it should look as follows:\n\npermissions:\n\nscopes:\n\n- read:conf…",
"name": "",
"is_accepted": true
}
] |
4deec647681521b548aeeb062f26a511 | i know how to override main.vmd, page.vmd etc., but i can’t figure out how to override the comments.vmd.
in atlassian-plugin.xml:
<theme ...>
...
<layout key="${project.groupid}.${project.artifactid}:main"/>
<layout key="${project.groupid}.${project.artifactid}:page"/>
<layout key="${project.g… | how to override comments.vmd in own theme | atlassian.com | 2021.17 | [
{
"text": "the mistake wasn’t the key, it’s the path for the overrides-attribute.\n\nfor comments.vmd it must be the path “/decorators/components/comments.vmd”.\n\nlike this:\n\n<layout key=\"comments\" name=\"comments decorator\" class=\"com.atlassian.confluence.themes.velocitydecorator\" overrides=\"/decorators/component…",
"name": "",
"is_accepted": true
}
] |
502713d2a46ceef1b3d08058aa932ea8 | [@bitvoodoo-atlassian](/u/bitvoodoo-atlassian), i have noticed that some spacing has been removed at the top of project setting pages (maybe other pages too). think it first appeared around last friday.
just wanted to ask if this change was intentional? if yes, i will have to update all my connect apps to add back the spaci… | intentional spacing changes? | atlassian.com | 2021.17 | [
{
"text": "[@tbinna](/u/tbinna) yes, there was a permanent change to ensure that apps get the full page (without any margins or headers included). however that change was in october 2018, almost 6 months ago\n\napologies for the inconvenience, but if you could update your apps to include the spacing you want it would be appr…",
"name": "",
"is_accepted": true
}
] |
d372beab6fb7f7d6dcdab4d51bd3d236 | i’ve bought a $10 license as usual to get the source of jira, which i can get. however, it seems the button “get developer license” on [my.atlassian.com](http://my.atlassian.com) has disappeared.
does anyone has any info on that?
[[00]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/8/0/80b14ad8ba9685d888995f32cf0fce733ff67b23.png "00")
thank you,
adrien | where can i get a "developer license" for jira | atlassian.com | 2021.39 | [
{
"text": "starter licenses haven’t had the developer licenses (my guess is that the thinking is that at that level you wouldn’t really have a standby server). you should have access to the source code though.",
"name": "",
"is_accepted": true
}
] |
fe51702c8ce91572d5c4bc723541678b | hey, i wonder if we should be able to access this comment likes api if our bitbucket is a server hosted on premises?
<https://developer.atlassian.com/static/rest/bitbucket-server/4.8.1/bitbucket-comment-likes-rest.html#idm34960>
our bitbucket server version is v4.13.0
thanks | comment likes api available for bitbucket hosted on premises? | atlassian.com | 2021.17 | [
{
"text": "yes… the api you found is for 4.8.1 bitbucket server - you’ll just want to look at <https://developer.atlassian.com/static/rest/bitbucket-server/4.13.0/bitbucket-comment-likes-rest.html#idm45451308864416> (but it’s going to be backwards compatible - the bitbucket team is pretty good about that ).",
"name": "",
"is_accepted": true
}
] |
1c6c5124d563ae411f0f35c933b25e09 | hi,
i was sent here by atlassian support: does anyone know in which file (system file) jira stores the category color codes for statuses? we need to change the color for the “in progress” category back to yellow (became blue recently…). i hope there are just 2-3 color codes that i need to change so… | are status category color codes defined anywhere in jira system files? | atlassian.com | 2020.34 | [
{
"text": "i used something like this in the announcement banner for now. however, please note that i went the opposite direction: i found the remaining yellow examples and instead turned them into the new colors – i just wanted it to be consistent. you can override the color codes with your own desired ones.\n\n…",
"name": "",
"is_accepted": true
}
] |
5dcbd3322162f10d6f755233138474be | hello everyone,
several weeks ago i updated my plugin for no-native description field for repositories (old bitbucket server versions don’t have native description field) to migrate on native field.
i have problem with repository searching, because in old version plugin i used active objects to fi… | repositorysearchrequest with description property | atlassian.com | 2020.29 | [
{
"text": "my best way to do that:\n\nuse repositoryservice, call findall to get pages with repositories and use foreach with string.contains.",
"name": "",
"is_accepted": true
}
] |
7ec6458141a4ef55261775af2d1bc030 | is there a reason why the link for creating devhelp tickets was commented out?
[[image]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/2/0/20b3dc460f4f63c9f03d6d409ae041fed0657adc.png "image.png") | developer support link | atlassian.com | 2019.51 | [
{
"text": "hi [@sven.schatter](/u/sven.schatter) - devhelp is currently being refactored. we’ve been getting inundated with general support questions that belong on the developer community despite our best effort of describing what devhelp should be used for. general questions need to be posted here, on the forums.\n\nfor the speci…",
"name": "",
"is_accepted": true
}
] |
bc619805ff3e7e5e965a9ad6070579dc | i need to set due date automatically based on the original estimate if:
issue has been assigned to a user
issue has an original estimate
for this, i need to get all the issues assigned to the user so that i can see what open issues he/she has sorted by their priority. how do i get all the issues… | how to get all issues(regardless of projects) assigned to a user | atlassian.com | 2021.17 | [
{
"text": "it looks like you’re building a java plugin so you’ll need to refer to the [java api](https://docs.atlassian.com/jira/server/), as opposed to the rest example i provided earlier.\n\nthere’s an example of using jql to search in [jira-report-plugin](https://bitbucket.org/atlassian_tutorial/jira-report-plugin/). [the searchmapissuekeys method](https://bitbucket.org/atlassian_tutorial/jira-report-plugin/src/master/src/main/java/com/atlassian/plugins/tutorial/jira/reports/singlelevelgroupbyreportextended.java?at=master&fileviewer=file-view-default#singlelevelgroupbyreportextended.java-83) demonstrates how to use the searchprovider class. this [search](https://docs.atlassian.com/jira/server/com/atlassian/jira/issue/search/searchprovider.html#search-com.atlassian.query.query-com.atlassian.jira.user.applicationuser-com.atlassian.jira.web.bean.pagerfilter-) metho…",
"name": "",
"is_accepted": true
}
] |
ad723e09d9cb9411ad57b890eda909e1 | hey everyone,
i just created a project using the atlassian sdk “atlas-create-bitbucket-plugin”. i was getting an error that several of the dependences were missing their versions, so i put in version numbers from : <https://mvnrepository.com/> . now i get this error:
your project has dependencies… | bitbucker server plugin creation | atlassian.com | 2021.17 | [
{
"text": "that should be working. did you configure netbeans to use the maven settings.xml that’s included in the sdk?\n\ndo an atlas-version and you should get something like:\n\natlas version: 6.2.14\n\natlas home: /applications/atlassian/atlassian-plugin-sdk-6.1.0\n\natlas scripts: /applications/atlas…",
"name": "",
"is_accepted": true
}
] |
a3ed0ad72070db4ebba5be38b44d3415 | i recently came across [a blog post](https://blog.developer.atlassian.com/confluence-connect-integrations-with-cql/) by [@kwestwalker](/u/kwestwalker) in which she referred to an app she built which allows content properties to be easily viewed. apps such as this can be useful to help with your app development so i’ve made an alternate version and hosted it using github pages. this means that whil… | content property browser app | atlassian.com | 2021.04 | [
{
"text": "[@sven.schatter](/u/sven.schatter) has take this idea to the next level with a more polished version that is available in the [atlassian marketplace](https://marketplace.atlassian.com/):\n\n[we made a small dev tool for all you confluence cloud devs that are working with page & space properties (\"property inspector\")](https://community.developer.atlassian.com/t/we-made-a-small-dev-tool-for-all-you-confluence-cloud-devs-that-are-working-with-page-space-properties-property-inspector/42932)",
"name": "",
"is_accepted": true
}
] |
ecb26720320a3d83939b25e445d8fbe7 | hi there,
i have an automation use-case where, out of a card link (or shortlink), i need to perform some api actions on that card. but the /cards api can only take card id or shordid.
is there any way to map the card link to its id?
thanks in advance! | using trello api, how can i resolve a card's link (url) into its id? | atlassian.com | 2019.51 | [
{
"text": "the cards resource will take the shortlink from in place of an id.\n\nfor instance, we have this url for a public card: <https://trello.com/c/3cspkqof/>\n\nwe can pass its shortlink, 3cspkqof, to the 1/cards/{idcard} route: <https://trello.com/1/cards/3cspkqof/>\n\nkeep in mind that this works without any api…",
"name": "",
"is_accepted": true
}
] |
7af019c63c9b25ec258b5435278c9fcd | i need to write bitbucket plugin, which will create default branch and will place .gitignore and adjusted (specifically for the new repository) readme.md.
following the tutorials it was easy to start and the to add event listener component by creating class below. the @eventlistener method fires as… | what should be used to write bitbucket plugin to fill newly created repositories with a content? | atlassian.com | 2021.17 | [
{
"text": "for the latter part, change:\n\nprivate final refservice refservice;\n\n@autowired\n\npublic repositorycreatedlistener(@componentimport refservice refservice) {\n\nthis.refservice = refservice;\n\n}\n\nto:\n\n@componentimport\n\nprivate final refservice refservice;\n\n@autowired\n\npublic reposit…",
"name": "",
"is_accepted": true
}
] |
d363559e57cb5f8f9e4f40e318876b13 | for atlas crm we’ve built two automation then-handlers. when i navigate to the legacy automation feature in jsd i see that the legacy automation feature will be replaced by the new automation feature and that we don’t need to do anything. can anyone share more information about this? will this mean … | will legacy automation handlers built by vendors work in the new automation feature on jsd cloud? | atlassian.com | 2021.04 | [
{
"text": "hi fatih & tobias,\n\nconnect extensions for automation are not on our roadmap and old automation extensions will not work or be supported in the new automation engine.\n\nsaying that, extensibility is core to our automation strategy and we understand how important it is for both our partners and our cu…",
"name": "",
"is_accepted": true
}
] |
2bd371d16e586f84e6b764647bc04ea7 | we are experimenting with some react components for our addons, and i18n is something that has been occupying my mind lately. how would one start off doing that in react, can we utilise the same properties files we are using for the rest of our addon with ajs.i18n.gettext()?
i have seen you guys (a… | how to do i18n with react | atlassian.com | 2021.17 | [
{
"text": "i use a simple react flux setup with\n\najs.toinit(function() {\n\n});\n\nto render the main view. as far as i see i haven’t done any special setup for i18n, besides the normal resource bundle setup.\n\nhere are my package.json dependencies:\n\n“dependencies”: {\n\n“axios”: “^0.15.3”,\n\n“babel-core”: “^6.21.0”,\n\n…",
"name": "",
"is_accepted": true
}
] |
fe87ab19f22da71999bd714a1ecd1d76 | i have an application that does rest calls to both jira and bitbucket. for authorization, it takes your username + password, encodes it, and uses it as part of basic authentication on the requests.
that broke on new accounts a few weeks ago, due to the username:password being deprecated, at least … | cannot use current password to access bitbucket cloud api | atlassian.com | 2020.05 | [
{
"text": "more specifically, this section:\n\nusing an app password\n\nan app password is a substitute password for your user account, when authenticating with bitbucket:\n\nusername: your bitbucket username\n\npassword: the app password\n\nthis applies to direct api access (e.g. via curl with http authentication) as …",
"name": "",
"is_accepted": true
}
] |
ba3f2a6aa5a0e4dc1fc614037f8b262d | hi community,
during our plugin development (atlassian connect spring boot), we changed the name field in the atlassian-connect.json json file few times.
when we decided on the final name we paid attention that all the issues created by the plugin have the reporter name as the first name we used i… | change reporter name in new open issues | atlassian.com | 2021.39 | [
{
"text": "hi [@ofirnir](/u/ofirnir),\n\nas seen in [this ticket](https://ecosystem.atlassian.net/browse/ac-2448) and other threads ([1](https://community.developer.atlassian.com/t/how-to-change-app-system-user-name/26740), [2](https://community.developer.atlassian.com/t/edit-connect-app-system-user-name-profile-picture/49481/2)) there isn’t a way to change the name of the app user right now. i guess your best bet will probably be to raise a devhelp or amkthelp ticket with atlassian.\n\n[image] ofirnir:\n\nthe only workaround we see is to change the key property wh…",
"name": "",
"is_accepted": true
}
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.