Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
Report an error? Manual pagination fix
· 9 years ago
Is there a place where I can report errors? Or at least what I think is an error. I was having trouble getting pagination to show up on my blog page. For reference, this is my setup. My 'blog' page i
-
Can OAuth via Google be limited to a Domain?
· 9 years ago
Hi, correct me if I'm wrong: the recently added whitelisting option effectively allows to restrict access to a specific domain?
-
Can OAuth via Google be limited to a Domain?
· 10 years ago
Will do, thanks!
-
Can OAuth via Google be limited to a Domain?
· 10 years ago
Please add this request to the soon-to-be-release Oauth plugin: https://github.com/getgrav/grav-plugin-login-oauth
-
Can OAuth via Google be limited to a Domain?
· 10 years ago
Joshua, did you happen to develop your own solution for this? I'm also looking for Google Authentication with domain filtering. Thanks!
-
Can OAuth via Google be limited to a Domain?
· 10 years ago
Thanks for the reply. I'll stay tuned. In the meantime I may build something that can intercept a login request, and just do email domain validation in php before submitting to google.
-
Can OAuth via Google be limited to a Domain?
· 10 years ago
Right now the oauth capability is coded into the login plugin but we are discussing breaking this out into a plugin that enhances login. This would also mean you could more easily fork or create your
-
Can OAuth via Google be limited to a Domain?
· 10 years ago
I am considering using Grav for a company intranet. We currently use Google Apps for everything, and so I am really excited that Grav supports "Sign in with Google". However, I would need to be able
-
Best Practice for saving/managing data in plugin
· 9 years ago
In the Comments plugin we store a comment under user/data/comments. The basic way it works is: use RocketTheme\Toolbox\File\File; ... $data = array(/*something*/); $file = File::instance(DATA_DIR . 'c
-
Best Practice for saving/managing data in plugin
· 9 years ago
Thank you for your tips. I think, json may a good choice as well. I will also look at the flex plugin for a little inspiration.