roman01la / cljs-rum-realworld-example-app

ClojureScript + Rum codebase containing real world examples
53 stars 9 forks source link

Add authorization #6

Open lavgl opened 7 years ago

lavgl commented 7 years ago

I'd like to implement auth as a next part. This covers:

I suppose this functionality will be covered by several PRs.

roman01la commented 7 years ago

LGTM

foopang commented 7 years ago

Sorry for jumping in, but I have some code ready for review if you don't mind me taking this task.

lavgl commented 7 years ago

Sure I don't. Do you want to cover all the functionality described above?

foopang commented 7 years ago

Yes, I have all the functionality described above covered already in https://github.com/roman01la/cljs-rum-realworld-example-app/pull/7. But the PR is not approved by @roman01la. I will try to break it down into several PRs.

roman01la commented 7 years ago

@foopang Thanks!

roman01la commented 7 years ago

@foopang One thing that might save you a bit of time: try to stick to a code style of the project as much as you can, for example component names should be camel cased starting with a capital character. Basically see how the rest of the code is written and try to write your code in same manner. We want the code base to be consistent, because this project is intended to serve as a reference for others.