summaryrefslogtreecommitdiff
path: root/gstudio/urls/pageadd.py
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/urls/pageadd.py')
-rw-r--r--gstudio/urls/pageadd.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/gstudio/urls/pageadd.py b/gstudio/urls/pageadd.py
new file mode 100644
index 0000000..8aa4b10
--- /dev/null
+++ b/gstudio/urls/pageadd.py
@@ -0,0 +1,20 @@
+# License, or (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+"""Url for Gstudio User Dashboard"""
+from django.conf.urls.defaults import url
+from django.conf.urls.defaults import patterns
+
+urlpatterns = patterns('gstudio.views.pageadd',
+ url(r'^$', 'pageadd',
+ name='gstudio_page'),
+
+ )