blob: d0fe41125b95c7485d34fb7200ce92284caf7ab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# A user that has limited admin access, to be used
# for running monitor tests against a live production
# installation.
#
class ApiMonitorUser < ApiUser
def is_monitor?
true
end
end
|