Drupal 8 - Advanced usage of Paragraphs module - Add nested set of fields and single Add more button (No Coding Required)
Introduction In my previous article, I explained How to have set of fields and…
November 10, 2017
This article shows some of common usages of JIRA rest apis.
Note: This article assumes you have a username and password for calling rest api of JIRA.
There is an API: createmeta, which gives you every possible field require to create JIRA issues.
Note: This API is pretty expensive in terms of data. It can give you complete data for all the projects. But, you might be interested in one or two projects.
curl -u "username:password" "https://jira_url/rest/api/2/issue/createmeta?projectKeys=XYZ"
Above api call will give you very limited result, which has only the issue types, and no expanded fields. But, we are interested in getting data of a custom field.
curl -u "username:password" "https://jira_url/rest/api/2/issue/createmeta?projectKeys=XYZ&expand=projects.issuetypes.fields"
Now, you are telling JIRA to return expanded fields, and now you will get values of all custom fields that appear while creating a JIRA issue in your project XYZ, and for each issuetype.
Introduction In my previous article, I explained How to have set of fields and…
Introduction You have a running kubernetes setup, and have a webservice (exposed…
Introduction Twig is a powerful template engine for php. Drupal uses it heavily…
One of the biggest task while writing article or blog is to have right set of…
Problem In drupal textarea field, it was always a pain to see the two links…
Introduction I was trying to download some youtube videos for my kids. As I have…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…