Skip to content
Snippets Groups Projects
Commit fd701ee7 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

fix upload location

parent 46e950f1
No related branches found
No related tags found
1 merge request!2Dev
......@@ -3,7 +3,6 @@ from rest_framework import permissions
from rest_framework.response import Response
from rest_framework.decorators import action
from common.permissions import IsSafeOrPatch
from django.db.models import Sum
from . import models
from . import serializers
......
# Generated by Django 2.2.4 on 2020-02-09 18:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mentors', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='mentor',
name='image',
field=models.ImageField(blank=True, null=True, upload_to='public/mentors/images/'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment