]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/tests/datasets/sql/remoteauth.sql
LP#1817645: track RemoteAuth user activity
[working/Evergreen.git] / Open-ILS / tests / datasets / sql / remoteauth.sql
1 INSERT INTO config.usr_activity_type (id, ewho, ewhat, ehow, egroup, label) VALUES
2  ( 1001, 'basicauth', 'login', 'apache', 'authen',
3     oils_i18n_gettext(1001, 'RemoteAuth Login: HTTP Basic Authentication', 'cuat', 'label'));
4
5 -- config for Basic HTTP Authentication (SYS1)
6 INSERT INTO config.remoteauth_profile
7     (name, description, context_org, enabled, perm,
8         restrict_to_org, allow_inactive, allow_expired, block_list, usr_activity_type)
9     VALUES ('Basic', 'Basic HTTP Authentication for SYS1', 2, TRUE, 1,
10         TRUE, FALSE, FALSE, NULL, 1001);
11