Skip to content

Commit 9049da1

Browse files
committed
chore: use fider.io instead of getfider.com
1 parent 39fdd2b commit 9049da1

25 files changed

+28
-37
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://getfider.com">
2+
<a href="https://fider.io">
33
<img src="etc/logo-small.png" />
44
</a>
55
<h1 align="center">Fider</h1>
@@ -11,7 +11,7 @@
1111

1212
<div align="center">
1313
<h3>
14-
<a href="https://getfider.com">
14+
<a href="https://fider.io">
1515
Website
1616
</a>
1717
<span> | </span>
@@ -33,8 +33,8 @@
3333

3434
There are two options on how to get started with Fider
3535

36-
- **Self-Hosted**: You can install Fider on any cloud providers. There is no fee associated and you are responsible for managing it. [Learn how](https://getfider.com/#get-started)
37-
- **Cloud**: Cloud Fider is a fully managed services where you get started in minutes. Forget about managing software updates and patches, we do it all for you! [Sign up now](https://getfider.com/#get-started)
36+
- **Self-Hosted**: You can install Fider on any cloud providers. There is no fee associated and you are responsible for managing it. [Learn how](https://fider.io/#get-started)
37+
- **Cloud**: Cloud Fider is a fully managed services where you get started in minutes. Forget about managing software updates and patches, we do it all for you! [Sign up now](https://fider.io/#get-started)
3838

3939
## Contributors
4040

app/middlewares/tenant.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,6 @@ func MultiTenant() web.MiddlewareFunc {
4646
return func(c *web.Context) error {
4747
hostname := c.Request.URL.Hostname()
4848

49-
// If no tenant is specified, redirect user to getfider.com
50-
// This is only valid for fider.io hosting
51-
if (env.IsProduction() && hostname == "fider.io") ||
52-
(env.IsDevelopment() && hostname == "dev.fider.io") {
53-
if c.Request.URL.Path == "" || c.Request.URL.Path == "/" {
54-
return c.Redirect("https://getfider.com")
55-
}
56-
}
57-
5849
byDomain := &query.GetTenantByDomain{Domain: hostname}
5950
err := bus.Dispatch(c, byDomain)
6051
if err != nil && errors.Cause(err) != app.ErrNotFound {

app/pkg/web/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ func LogoURL(ctx context.Context) string {
565565
if hasTenant && tenant.LogoBlobKey != "" {
566566
return AssetsURL(ctx, "/static/images/%s?size=200", tenant.LogoBlobKey)
567567
}
568-
return "https://getfider.com/images/logo-100x100.png"
568+
return "https://fider.io/images/logo-100x100.png"
569569
}
570570

571571
// BaseURL return the base URL from given context

app/pkg/web/testdata/basic.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/pkg/web/testdata/canonical.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<meta property="og:description" content="" />
3131
<meta property="og:type" content="website" />
3232
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
33-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
33+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3434
</head>
3535
<body>
3636

app/pkg/web/testdata/chunk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/pkg/web/testdata/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="My Page Description" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/pkg/web/testdata/home_ssr.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="My Page Description" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/pkg/web/testdata/oauth.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/pkg/web/testdata/tenant.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/pkg/web/testdata/user.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="My Page Description" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content="https://demo.test.fider.io:3000/" />
31-
<meta property="og:image" content="https://getfider.com/images/logo-100x100.png">
31+
<meta property="og:image" content="https://fider.io/images/logo-100x100.png">
3232
</head>
3333
<body>
3434

app/tasks/change_email_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func TestSendChangeEmailConfirmationTask(t *testing.T) {
3535
Expect(emailmock.MessageHistory[0].TemplateName).Equals("change_emailaddress_email")
3636
Expect(emailmock.MessageHistory[0].Tenant).Equals(mock.DemoTenant)
3737
Expect(emailmock.MessageHistory[0].Props).Equals(dto.Props{
38-
"logo": "https://getfider.com/images/logo-100x100.png",
38+
"logo": "https://fider.io/images/logo-100x100.png",
3939
})
4040
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
4141
Name: mock.DemoTenant.Name,

app/tasks/delete_post_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestNotifyAboutDeletePostTask(t *testing.T) {
7777
"siteName": "Demonstration",
7878
"content": template.HTML("<p>Invalid post!</p>"),
7979
"change": "<a href='http://domain.com/settings'>change your notification preferences</a>",
80-
"logo": "https://getfider.com/images/logo-100x100.png",
80+
"logo": "https://fider.io/images/logo-100x100.png",
8181
})
8282
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
8383
Name: "Jon Snow",

app/tasks/invites_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func TestSendInvites(t *testing.T) {
4444
Expect(emailmock.MessageHistory[0].Tenant).Equals(mock.DemoTenant)
4545
Expect(emailmock.MessageHistory[0].Props).Equals(dto.Props{
4646
"subject": "My Subject",
47-
"logo": "https://getfider.com/images/logo-100x100.png",
47+
"logo": "https://fider.io/images/logo-100x100.png",
4848
})
4949
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
5050
Name: "Jon Snow",

app/tasks/new_comment_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func TestNotifyAboutNewCommentTask(t *testing.T) {
7373
"view": "<a href='http://domain.com/posts/1/add-support-for-typescript'>view it on your browser</a>",
7474
"change": "<a href='http://domain.com/settings'>change your notification preferences</a>",
7575
"unsubscribe": "<a href='http://domain.com/posts/1/add-support-for-typescript'>unsubscribe from it</a>",
76-
"logo": "https://getfider.com/images/logo-100x100.png",
76+
"logo": "https://fider.io/images/logo-100x100.png",
7777
})
7878
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
7979
Name: "Arya Stark",

app/tasks/new_post_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func TestNotifyAboutNewPostTask(t *testing.T) {
7171
"content": template.HTML("<p>TypeScript is great, please add support for it</p>"),
7272
"view": "<a href='http://domain.com/posts/1/add-support-for-typescript'>view it on your browser</a>",
7373
"change": "<a href='http://domain.com/settings'>change your notification preferences</a>",
74-
"logo": "https://getfider.com/images/logo-100x100.png",
74+
"logo": "https://fider.io/images/logo-100x100.png",
7575
})
7676
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
7777
Name: "Jon Snow",

app/tasks/signin_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func TestSendSignInEmailTask(t *testing.T) {
2929
Expect(emailmock.MessageHistory[0].TemplateName).Equals("signin_email")
3030
Expect(emailmock.MessageHistory[0].Tenant).Equals(mock.DemoTenant)
3131
Expect(emailmock.MessageHistory[0].Props).Equals(dto.Props{
32-
"logo": "https://getfider.com/images/logo-100x100.png",
32+
"logo": "https://fider.io/images/logo-100x100.png",
3333
})
3434
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
3535
Name: mock.DemoTenant.Name,

app/tasks/signup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func TestSendSignUpEmailTask(t *testing.T) {
3030
Expect(emailmock.MessageHistory[0].TemplateName).Equals("signup_email")
3131
Expect(emailmock.MessageHistory[0].Tenant).IsNil()
3232
Expect(emailmock.MessageHistory[0].Props).Equals(dto.Props{
33-
"logo": "https://getfider.com/images/logo-100x100.png",
33+
"logo": "https://fider.io/images/logo-100x100.png",
3434
})
3535
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
3636
Name: "Fider",

app/tasks/status_change_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func TestNotifyAboutStatusChangeTask(t *testing.T) {
8282
"view": "<a href='http://domain.com/posts/1/add-support-for-typescript'>view it on your browser</a>",
8383
"change": "<a href='http://domain.com/settings'>change your notification preferences</a>",
8484
"unsubscribe": "<a href='http://domain.com/posts/1/add-support-for-typescript'>unsubscribe from it</a>",
85-
"logo": "https://getfider.com/images/logo-100x100.png",
85+
"logo": "https://fider.io/images/logo-100x100.png",
8686
})
8787
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
8888
Name: "Jon Snow",
@@ -199,7 +199,7 @@ func TestNotifyAboutStatusChangeTask_Duplicate(t *testing.T) {
199199
"view": "<a href='http://domain.com/posts/2/i-need-typescript'>view it on your browser</a>",
200200
"change": "<a href='http://domain.com/settings'>change your notification preferences</a>",
201201
"unsubscribe": "<a href='http://domain.com/posts/2/i-need-typescript'>unsubscribe from it</a>",
202-
"logo": "https://getfider.com/images/logo-100x100.png",
202+
"logo": "https://fider.io/images/logo-100x100.png",
203203
})
204204
Expect(emailmock.MessageHistory[0].From).Equals(dto.Recipient{
205205
Name: "Jon Snow",

public/components/common/Logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const TenantLogo = (props: TenantLogoProps) => {
2424
if (tenant && tenant.logoBlobKey) {
2525
return <img src={TenantLogoURL(fider.session.tenant, props.size)} alt={tenant.name} />
2626
} else if (props.useFiderIfEmpty) {
27-
return <img src="https://getfider.com/images/logo-100x100.png" alt="Fider" />
27+
return <img src="https://fider.io/images/logo-100x100.png" alt="Fider" />
2828
}
2929
return null
3030
}

public/components/common/PoweredByFider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ interface PoweredByFiderProps {
99
export const PoweredByFider = (props: PoweredByFiderProps) => {
1010
return (
1111
<div className={`c-powered ${props.className}`}>
12-
<a rel="noopener" href="https://getfider.com" target="_blank">
12+
<a rel="noopener" href="https://fider.io" target="_blank">
1313
Powered by Fider
1414
</a>
1515
</div>

public/pages/Administration/pages/ManageAuthentication.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default class ManageAuthenticationPage extends AdminBasePage<ManageAuthen
131131
<h2 className="text-display">OAuth Providers</h2>
132132
<p>
133133
You can use these section to add any authentication provider thats supports the OAuth2 protocol. Additional information is available in our{" "}
134-
<a rel="noopener" className="text-link" target="_blank" href="https://getfider.com/docs/configuring-oauth/">
134+
<a rel="noopener" className="text-link" target="_blank" href="https://fider.io/docs/configuring-oauth/">
135135
OAuth Documentation
136136
</a>
137137
.

public/pages/Administration/pages/ManageWebhooks.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const ManageWebhooksPage = (props: ManageWebhooksPageProps) => {
135135
<VStack spacing={8}>
136136
<p>
137137
Use webhooks to integrate Fider with other applications like Slack, Discord, Zapier and many others.{" "}
138-
<a className="text-link" href="https://getfider.com/docs/using-webhooks" target="_blank" rel="noopener">
138+
<a className="text-link" href="https://fider.io/docs/using-webhooks" target="_blank" rel="noopener">
139139
Learn more in our documentation
140140
</a>
141141
.

public/pages/MySettings/components/APIKeyForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class APIKeyForm extends React.Component<any, APIKeyFormState> {
4949
<p className="text-muted">
5050
<Trans id="mysettings.apikey.documentation">
5151
To learn how to use the API, read the{" "}
52-
<a className="text-link" rel="noopener" href="https://getfider.com/docs/api" target="_blank">
52+
<a className="text-link" rel="noopener" href="https://fider.io/docs/api" target="_blank">
5353
official documentation
5454
</a>
5555
.

public/pages/SignUp/SignUp.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const SignUpPage = () => {
123123
<div id="p-signup" className="page container w-max-6xl">
124124
{modal}
125125
<div className="h-20 text-center mb-4">
126-
<img className="logo" alt="Logo" src="https://getfider.com/images/logo-100x100.png" />
126+
<img className="logo" alt="Logo" src="https://fider.io/images/logo-100x100.png" />
127127
</div>
128128

129129
<h3 className="text-display mb-2">1. Who are you?</h3>

0 commit comments

Comments
 (0)