Initial commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- Get the username of the currently authenticated user
|
||||
SELECT get_username() as authenticated_user;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Get details for a specific Jira project using OAuth authentication
|
||||
SELECT get_project_jira($project_key) as result;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Get details for a specific Jira user using OAuth authentication
|
||||
SELECT get_user_jira($username) as result;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Example JQL query endpoint using OAuth authentication
|
||||
SELECT jql_query_jira($query, $start, $limit) as result;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- List all projects in Jira using OAuth authentication
|
||||
SELECT list_projects_jira() as result;
|
||||
Reference in New Issue
Block a user