Skip to content

Commit

Permalink
Do minor fixes
Browse files Browse the repository at this point in the history
(readme, SQL seed data)
  • Loading branch information
mederly committed Aug 20, 2018
1 parent 9d1d397 commit 6acd2fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions grouper-midpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ There are the following containers:

All files needed to build and compose these containers are in `mp-gr` directory.

TODO ...

TODO:
- Grouper -> midPoint via MQ
- groups for courses are not created automatically on first import (why?)
- performance of initial import from courses (500ms per user)
- fix hardcoded password for grouper loader LDAP
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CREATE TABLE SIS_AFFILIATIONS (
);

INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jsmith','Smith','Joe','John Smith',NULL,NULL);
INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson',NULL,'Bob','Bob Anderson',NULL,NULL);
INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson','Anderson','Bob','Bob Anderson',NULL,NULL);
INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite','White','Karl','Karl White','Law','kwhite@example.edu');
INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite','member');
INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite','student');
Expand Down

0 comments on commit 6acd2fc

Please sign in to comment.