added todos, replaced literals
This commit is contained in:
parent
28d48790b1
commit
7cb0818b99
4 changed files with 25 additions and 4 deletions
2
CREDITS
2
CREDITS
|
@ -36,7 +36,7 @@ D: Development
|
||||||
W: https://github.com/martini
|
W: https://github.com/martini
|
||||||
--
|
--
|
||||||
N: Roy Kaldung
|
N: Roy Kaldung
|
||||||
D: Operations & QA Hero
|
D: DevOps & QA Hero
|
||||||
W: https://github.com/rkaldung
|
W: https://github.com/rkaldung
|
||||||
--
|
--
|
||||||
N: Felix Niklas
|
N: Felix Niklas
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
|
|
||||||
* case
|
* case
|
||||||
|
|
||||||
All request are named case. In other systems this is also called issues, ticket, etc.
|
All request are named case. In other systems this is also called issue, ticket, etc.
|
||||||
|
|
||||||
* channel
|
* channel
|
||||||
Channels are the incoming and outgoing ways where articles flow. There are assigned to groups. Channels can be e-mail, chat, twitter, etc. New channels can be added via the plugin mechanism.
|
Channels are the incoming and outgoing ways where articles flow. They are assigned to groups. Channels can be e-mail, chat, twitter, etc. New channels can be added via the plugin mechanism.
|
||||||
|
|
||||||
* group
|
* group
|
||||||
|
|
||||||
|
|
20
doc/PERMISSIONS.md
Normal file
20
doc/PERMISSIONS.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
##List of available permissions in Zammad
|
||||||
|
|
||||||
|
###Channel administrator
|
||||||
|
Add, modify and delete channels.
|
||||||
|
###Channel manager
|
||||||
|
Modify channels.
|
||||||
|
###Group administrator
|
||||||
|
Add, modify and delete groups.
|
||||||
|
###Group manager
|
||||||
|
Modify groups.
|
||||||
|
###System administrator
|
||||||
|
Overall permission.
|
||||||
|
###User administrator
|
||||||
|
Manage users w/ type agent and user.
|
||||||
|
###Customer administrator
|
||||||
|
Is allowed to add, modify and delete customer.
|
||||||
|
###Customer manager
|
||||||
|
Has the permission to add and modify.
|
||||||
|
###Organization administrator
|
||||||
|
###Organization manager
|
|
@ -45,6 +45,7 @@ returns
|
||||||
|
|
||||||
if uri.scheme =~ /https/i
|
if uri.scheme =~ /https/i
|
||||||
http.use_ssl = true
|
http.use_ssl = true
|
||||||
|
# @TODO verify_mode should be configurable
|
||||||
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -130,7 +131,7 @@ returns
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
raise "Unable to proccess http call '#{response.inspect}'"
|
raise "Unable to process http call '#{response.inspect}'"
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.ftp(uri,options)
|
def self.ftp(uri,options)
|
||||||
|
|
Loading…
Reference in a new issue