Click here to Skip to main content
15,886,067 members
Articles / Web Development / ASP.NET

How to Create Jira User Story Cards Programatically

Rate me:
Please Sign up or sign in to vote.
4.83/5 (3 votes)
17 Nov 2013CPOL3 min read 24.7K   283   3  
Create Jira user story cards without any plugins
using System.Web;
using System.Web.Mvc;

namespace JiraCardCreator
{
    public class FilterConfig
    {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters)
        {
            filters.Add(new HandleErrorAttribute());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Hinttech BV
Netherlands Netherlands
I'm a Portuguese software engineer living in The Netherlands and working for HintTech BV

Comments and Discussions