This repository has been archived by the owner on Jun 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #262 from TakwimuAfrica/hotfix/support-community-link
Add community link to Support settings
- Loading branch information
Showing
4 changed files
with
24 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1 @@ | ||
[ | ||
{ | ||
"model": "takwimu.supportsetting", | ||
"pk": 1, | ||
"fields": { | ||
"site": 1, | ||
"hello": "[email protected]", | ||
"zendesk": "https://takwimu.zendesk.com", | ||
"address": | ||
"<p>403 Placeholder</p><p>Placeholder<br/></p><p>Placeholder<br/></p><p>+0332 3423342322<br/></p>" | ||
} | ||
} | ||
] | ||
[{"model": "takwimu.supportsetting", "pk": 1, "fields": {"site": 1, "hello": "[email protected]", "zendesk": "https://takwimu.zendesk.com", "community": "https://takwimu.zendesk.com/hc/en-us/community/topics", "address": "<p>403 Placeholder</p><p>Placeholder<br/></p><p>Placeholder<br/></p><p>+0332 3423342322<br/></p>"}}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.13 on 2018-07-25 15:55 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('takwimu', '0029_auto_20180724_1311'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='supportsetting', | ||
name='community', | ||
field=models.URLField(blank=True, help_text=b'TAKWIMU Community forums URL', null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters