-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from Resgrid/develop
Develop
- Loading branch information
Showing
65 changed files
with
2,672 additions
and
1,372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
meta { | ||
name: GetMessageStatus | ||
type: http | ||
seq: 1 | ||
} | ||
|
||
get { | ||
url: https://api.postmarkapp.com/messages/outbound/8bea308e-cc9c-4801-85e5-b98f8af9de1d/details | ||
body: none | ||
auth: none | ||
} | ||
|
||
headers { | ||
Accept: application/json | ||
X-Postmark-Server-Token: | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using ProtoBuf; | ||
using System; | ||
|
||
namespace Resgrid.Model.Events | ||
{ | ||
[ProtoContract] | ||
public class SecurityRefreshEvent | ||
{ | ||
[ProtoMember(1)] | ||
public string EventId { get; set; } | ||
|
||
[ProtoMember(2)] | ||
public int DepartmentId { get; set; } | ||
|
||
[ProtoMember(3)] | ||
public SecurityCacheTypes Type { get; set; } | ||
|
||
public SecurityRefreshEvent() | ||
{ | ||
EventId = Guid.NewGuid().ToString(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,8 @@ public enum PermissionTypes | |
ViewGroupUsers, | ||
DeleteCall, | ||
CloseCall, | ||
AddCallData | ||
AddCallData, | ||
ViewGroupUnits | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace Resgrid.Model | ||
{ | ||
public enum SecurityCacheTypes | ||
{ | ||
WhoCanViewUnits = 1, | ||
WhoCanViewUnitLocations = 2, | ||
WhoCanViewPersonnel = 3, | ||
WhoCanViewPersonnelLocations = 4, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using ProtoBuf; | ||
using System.Collections.Generic; | ||
|
||
namespace Resgrid.Model | ||
{ | ||
[ProtoContract] | ||
public class VisibilityPayloadUnits | ||
{ | ||
[ProtoMember(1)] | ||
public bool EveryoneNoGroupLock { get; set; } | ||
|
||
[ProtoMember(2)] | ||
public Dictionary<int, List<string>> Units { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using ProtoBuf; | ||
using System.Collections.Generic; | ||
|
||
|
||
namespace Resgrid.Model | ||
{ | ||
[ProtoContract] | ||
public class VisibilityPayloadUsers | ||
{ | ||
[ProtoMember(1)] | ||
public bool EveryoneNoGroupLock { get; set; } | ||
|
||
[ProtoMember(2)] | ||
public Dictionary<string, List<string>> Users { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.