app/js/modules/githubUrls.js

/**
 * @file Contains all github urls
 * @author yafp
 * @module githubUrls
 */
'use strict'

// ----------------------------------------------------------------------------
// DEFINE GITHUB URL CONSTANTS
// ----------------------------------------------------------------------------
//

/**
* @constant
* @name urlGitHubGeneral
* @type {string}
* @default
*/
const urlGitHubGeneral = 'https://github.com/yafp/dirgistered' // repo url

/**
* @constant
* @type {string}
* @default
*/
const urlGitHubIssues = 'https://github.com/yafp/dirgistered/issues' // issue url

/**
* @constant
* @type {string}
* @default
*/
const urlGitHubChangelog = 'https://github.com/yafp/dirgistered/blob/master/docs/CHANGELOG.md' // changelog url

/**
* @constant
* @type {string}
* @default
*/
const urlGitHubReleases = 'https://github.com/yafp/dirgistered/releases' // releases url

/**
* @constant
* @type {string}
* @default
*/
const urlGitHubRepoTags = 'https://api.github.com/repos/yafp/dirgistered/tags' // tags api url

/**
* @constant
* @type {string}
* @default
*/
const urlGithubApiReleases = 'https://api.github.com/repos/yafp/dirgistered/releases' // release api

/**
* @constant
* @type {string}
* @default
*/
const urlGithubSentryUsage = 'https://github.com/yafp/dirgistered/blob/master/docs/SENTRY.md' // sentry usage

// ----------------------------------------------------------------------------
// EXPORT THE MODULE FUNCTIONS
// ----------------------------------------------------------------------------
//
module.exports.urlGitHubGeneral = urlGitHubGeneral
module.exports.urlGitHubIssues = urlGitHubIssues
module.exports.urlGitHubChangelog = urlGitHubChangelog
module.exports.urlGitHubReleases = urlGitHubReleases
module.exports.urlGitHubRepoTags = urlGitHubRepoTags
module.exports.urlGithubApiReleases = urlGithubApiReleases
module.exports.urlGithubSentryUsage = urlGithubSentryUsage