Sha256: b4e4a2a903fd3b222ca328a7eeba66b013f8a93345ddbd14618c8dffffa04d1e

Contents?: true

Size: 582 Bytes

Versions: 20

Compression:

Stored size: 582 Bytes

Contents

;(function() {
  'use strict';

  function Participants($resource) {
    var ParticipantResource = $resource('/social_networking/participants/:id',
      { id: '@participant_id' });

    function Participant() {}

    Participant.getAll = function() {
      return ParticipantResource.query().$promise;
    };

    Participant.getOne = function(participant_id) {
      return ParticipantResource.get({ id: participant_id }).$promise;
    };

    return Participant;
  }

  angular.module('socialNetworking.services')
    .service('Participants', ['$resource', Participants]);
})();

Version data entries

20 entries across 16 versions & 1 rubygems

Version Path
social_networking-0.13.3 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.13.2 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.13.1 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.13.0 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.12.0 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.8 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.7 spec/dummy/tmp/jasmine/assets/social_networking/resources/participants-resource.js
social_networking-0.11.7 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.6 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.6 spec/dummy/tmp/jasmine/assets/social_networking/resources/participants-resource.js
social_networking-0.11.5 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.4 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.3 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.2 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.2 spec/dummy/tmp/jasmine/assets/social_networking/resources/participants-resource.js
social_networking-0.11.1 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.11.1 spec/dummy/tmp/jasmine/assets/social_networking/resources/participants-resource.js
social_networking-0.11.0 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.10.0 app/assets/javascripts/social_networking/resources/participants-resource.js
social_networking-0.9.3 app/assets/javascripts/social_networking/resources/participants-resource.js