Added user_info stuff... and changed serverconfig for issuer...

pull/263/head
Stephen Moore 2012-11-21 16:36:23 -05:00 committed by Justin Richer
parent 47b34d2b1b
commit 1bcaa68cb4
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
INSERT INTO users(username, password, enabled) values ('jricher','password',true);
INSERT INTO authorities(username,authority) values ('jricher','ROLE_USER');
INSERT INTO authorities(username,authority) values ('jricher','ROLE_ADMIN');
INSERT INTO user_info(user_id, preferred_username, name, email_verified) values ('jricher','jricher','jricher', 'FALSE');
INSERT INTO users(username, password, enabled) values ('mfranklin','password',true);
INSERT INTO authorities(username,authority) values ('mfranklin','ROLE_USER');

View File

@ -13,7 +13,7 @@
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">
<bean id="configBean" class="org.mitre.openid.connect.config.ConfigurationPropertiesBean">
<property name="issuer" value="http://localhost/" />
<property name="issuer" value="http://mm165692-pc.mitre.org:8080/openid-connect-server" />
<property name="defaultJwtSigner" value="rsa1"/>
</bean>