Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Recaptcha functionality to Gitea #4044

Merged
merged 30 commits into from Jul 5, 2018
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a467186
Add Recaptcha functionality to Gitea
flynnnnnnnnnn May 25, 2018
55bbfac
Add comment to struct
May 25, 2018
76b57f1
Add comment to function
May 25, 2018
0b12d2a
Fix import order
May 25, 2018
f6d9d2b
Remove helper functions
May 25, 2018
a39289d
Remove empty line and initialize Response differently
May 25, 2018
22d6265
Move script to footer
May 25, 2018
02ac7e3
Remove script from body
May 25, 2018
f203c2f
Remove script from body
May 25, 2018
7e6a60a
Add styles to Less
May 25, 2018
e787c7f
Remove inline styles
May 25, 2018
1effea1
Remove inline styles
May 25, 2018
b49c864
add field to form
flynnnnnnnnnn May 25, 2018
313e7dd
Switch to form field
May 25, 2018
d9e4392
Switch to form field
May 25, 2018
5039fe1
add built stylesheet
flynnnnnnnnnn May 25, 2018
f4ddfa1
Update built stylesheet
May 25, 2018
f2199d1
Responsive recaptcha styles
May 25, 2018
59cba2c
Merge branch 'master' into recaptcha
Jun 7, 2018
5aa9afb
Merge branch 'master' into recaptcha
Jul 4, 2018
628ca1b
change to captcha type to change between captchas
flynnnnnnnnnn Jul 4, 2018
8357eb5
Delete signup_inner.tmpl.save
Jul 4, 2018
7ff8e14
Delete signup_openid_register.tmpl.save
Jul 4, 2018
3239fad
update changes to css
flynnnnnnnnnn Jul 4, 2018
795019c
Merge branch 'master' into recaptcha
Jul 4, 2018
6786290
type issues
Jul 4, 2018
d32a204
conflicting types
Jul 4, 2018
93b4909
use const
flynnnnnnnnnn Jul 5, 2018
a2b9ba2
Merge branch 'master' into recaptcha
Jul 5, 2018
1812cd0
Merge branch 'master' into recaptcha
lunny Jul 5, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove helper functions
  • Loading branch information
Fluf committed May 25, 2018
commit f6d9d2ba7b4e47f5af7ed4f984b41f2e7e7d60a1
6 changes: 0 additions & 6 deletions modules/templates/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,6 @@ func NewFuncMap() []template.FuncMap {
"ParseDeadline": func(deadline string) []string {
return strings.Split(deadline, "|")
},
"EnableRecaptcha": func() bool {
return setting.Service.EnableRecaptcha
},
"RecaptchaSitekey": func() string {
return setting.Service.RecaptchaSitekey
},
}}
}

Expand Down