Skip to content

Commit

Permalink
Merge pull request #47 from Omnipro-Solutions/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
edgarpena14 committed May 15, 2024
2 parents 632aa83 + a796fd2 commit f8fc25e
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions omni_pro_oms/migrations/0007_alter_operation_auth_type_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Generated by Django 5.0 on 2024-04-17 13:46

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("omni_pro_oms", "0006_alter_operationtype_operation_code"),
]

operations = [
migrations.AlterField(
model_name="operation",
name="auth_type",
field=models.CharField(
choices=[
("token", "Token"),
("bearer_token", "Bearer Token"),
("api_key", "Api Key"),
("auth2", "Auth2"),
("auth1", "Auth1"),
("custom", "Custom"),
],
max_length=255,
verbose_name="Auth Type",
),
),
migrations.AlterField(
model_name="operation",
name="http_method",
field=models.CharField(
choices=[
("GET", "GET"),
("POST", "POST"),
("PUT", "PUT"),
("DELETE", "DELETE"),
("PATCH", "PATCH"),
("OPTIONS", "OPTIONS"),
("HEAD", "HEAD"),
("CONNECT", "CONNECT"),
("TRACE", "TRACE"),
],
max_length=255,
null=True,
verbose_name="HTTP Method",
),
),
]

0 comments on commit f8fc25e

Please sign in to comment.