Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
User expired
tcexam_uibk
Commits
87ce420f
Commit
87ce420f
authored
Feb 27, 2015
by
Daniel Haag
Browse files
added esb user and grant execute on integration functions
parent
f0dbcc6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
install/postgres_db_structure_functions.sql
install/postgres_db_structure_functions.sql
+19
-2
No files found.
install/postgres_db_structure_functions.sql
View file @
87ce420f
-- functions for tcexam integration
-- functions for tcexam
esb
integration
-- assign_tcexam_user_to_group
...
...
@@ -318,4 +318,21 @@ $BODY$
ALTER
FUNCTION
update_tcexam_user
(
text
,
character
varying
,
character
varying
)
OWNER
TO
postgres
;
\ No newline at end of file
-- create esb user
-- CREATE USER esb WITH PASSWORD '....';
-- grant execute right on the functions
GRANT
EXECUTE
ON
FUNCTION
assign_tcexam_user_to_group
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
delete_tcexam_user
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
get_tcexam_group
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
get_tcexam_group_appointment_users
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
get_tcexam_group_users
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
insert_tcexam_group
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
insert_tcexam_user
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
remove_tcexam_user_from_group
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
update_tcexam_group
TO
esb
;
GRANT
EXECUTE
ON
FUNCTION
update_tcexam_user
TO
esb
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment