Skip to content

Commit

Permalink
Add the dist/* as previous build didn't add it because of tslint.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtho11 committed Feb 18, 2015
1 parent f1c8893 commit 1b277e4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion dist/hawkular-ui-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,20 @@ var hawkularRest;
factory.NumericMetric = $resource(prefix + '/rhq-metrics/:tenantId/metrics/numeric', {
tenantId: '@tenantId'
});
factory.NumericMetricData = $resource(prefix + '/rhq-metrics/:tenantId/metrics/numeric/:numericId/data', {
factory['NumericMetricData'] = $resource(prefix + '/:tenantId/metrics/numeric/:numericId/data', {
tenantId: '@tenantId',
numericId: '@numericId'
}, {
queryMetrics: {
method: 'GET',
isArray: false,
params: { type: 'num' }
},
queryMetricsTimeRange: {
method: 'GET',
isArray: false,
params: { type: 'num', buckets: 60, start: '@startTimestamp', end: '@endTimestamp' }
}
});
factory.NumericMetricMeta = $resource(prefix + '/rhq-metrics/:tenantId/metrics/numeric/:numericId/meta', {
tenantId: '@tenantId',
Expand Down

0 comments on commit 1b277e4

Please sign in to comment.