예제 #1
0
파일: db.py 프로젝트: stanfeldman/samples
	def application_after_load(self, application):
		Consumer.drop_table(fail_silently=True)
		Consumer.create_table()
		User.drop_table(fail_silently=True)
		User.create_table()
		ConsumerUser.drop_table(fail_silently=True)
		ConsumerUser.create_table()
		user1 = User.create(username="******", password=self.hash_password("s"))
		user2 = User.create(username="******", password=self.hash_password("b"))
		consumer1 = Consumer.create(name="app1", client_id="1", client_secret=str(uuid4()), access_token="a1")
		consumer2 = Consumer.create(name="app2", client_id="2", client_secret="secret2", redirect_uri="http://localhost:8080/auth_usage/end")
		consumer3 = Consumer.create(name="app3", client_id="3", client_secret="secret3")
		ConsumerUser.create(consumer=consumer1, user=user1)
		print "app loaded"
예제 #2
0
파일: db.py 프로젝트: stanfeldman/samples
	def application_after_load(self, application):
		User.drop_table(fail_silently=True)
		User.create_table()
		UserAccount.drop_table(fail_silently=True)
		UserAccount.create_table()
		print "app loaded"