Lucas Satabin
Lucas Satabin
When uploading a new template, the user will have the choice in the visibility of the template: - private template will be seen only by he user himself - public...
That would be a great idea. We need the git support first. @chemicalstorm would you have time to add git support in the server?
Hi, `scala-session` just helps maintaining a session state across requests, it does not help providing any transport level security. Only SSL may help you in this case to protect transferring...
I would distinguish between server information (server version, scala version, java version, ...) and statistics, which are different stuffs. Ideally statistics are available only for administrators. What do you think?
Having such information publicly available is quite a security hole.
Hi, You need an implicit session manager in scope. There exist three different managers by default: - [in memory](https://github.com/gnieh/spray-session/blob/master/src/main/scala/spray/routing/session/InMemorySessionManager.scala) - [cookie baker](https://github.com/gnieh/spray-session/blob/master/src/main/scala/spray/routing/session/CookieBakerSessionManager.scala) - [redis](https://github.com/gnieh/spray-session/blob/master/src/main/scala/spray/routing/session/RedisSessionManager.scala) See [the examples](https://github.com/gnieh/spray-session#sample-code) and the [session...
Hi On 30/11/2015 09:28, syscaday wrote: > great assist.. i success done it and.. but i still got one issue that > one i run my service it error >...
Is your session manager implicitly available in scope ?
There doesn't seem to be much activity on this issue in scala-redis-nb, I think I will integrate your code as is until a better solution exists. Do you want to...
Hi, Aren't you missing an implicit `ExecutionContext` in scope?